diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..f930b69 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,10 @@ +#What is this PR for? + +## Overview or reasons +- Please explain the contents. + +## Tasks +- Please explain what did you do. + +## Result +- Please Describe the result \ No newline at end of file diff --git a/rpserver/build.gradle b/rpserver/build.gradle index bd77ca5..f935b6d 100644 --- a/rpserver/build.gradle +++ b/rpserver/build.gradle @@ -16,6 +16,7 @@ buildscript { } apply plugin: 'java' +apply plugin: 'java-library' apply plugin: 'eclipse' apply plugin: 'org.springframework.boot' apply plugin: 'io.spring.dependency-management' diff --git a/spring-boot-starter/line-fido2-spring-boot-autoconfigure/build.gradle b/spring-boot-starter/line-fido2-spring-boot-autoconfigure/build.gradle index e8ce3f3..9d6d3ea 100644 --- a/spring-boot-starter/line-fido2-spring-boot-autoconfigure/build.gradle +++ b/spring-boot-starter/line-fido2-spring-boot-autoconfigure/build.gradle @@ -20,8 +20,6 @@ repositories { } dependencies { -// api('com.linecorp.line.auth.fido.fido2:common:1.1.1-SNAPSHOT') -// api('com.linecorp.line.auth.fido.fido2:server:0.1.1-SNAPSHOT') api project(':common') api project(':server') diff --git a/spring-boot-starter/line-fido2-spring-boot-demo/build.gradle b/spring-boot-starter/line-fido2-spring-boot-demo/build.gradle index 6ae0ced..35ed548 100644 --- a/spring-boot-starter/line-fido2-spring-boot-demo/build.gradle +++ b/spring-boot-starter/line-fido2-spring-boot-demo/build.gradle @@ -28,7 +28,6 @@ jar { dependencies { implementation 'org.springframework.boot:spring-boot-starter' implementation('org.springframework.boot:spring-boot-starter-web') -// implementation('com.linecorp.line.auth.fido.fido2:line-fido2-spring-boot-starter:0.1.1-SNAPSHOT') implementation project(':spring-boot-starter:line-fido2-spring-boot-starter') compileOnly 'org.projectlombok:lombok:1.18.18' diff --git a/spring-boot-starter/line-fido2-spring-boot-starter/build.gradle b/spring-boot-starter/line-fido2-spring-boot-starter/build.gradle index fa9ed40..229f317 100644 --- a/spring-boot-starter/line-fido2-spring-boot-starter/build.gradle +++ b/spring-boot-starter/line-fido2-spring-boot-starter/build.gradle @@ -23,8 +23,6 @@ repositories { dependencies { implementation 'org.springframework.boot:spring-boot-starter' - -// api ('com.linecorp.line.auth.fido.fido2:line-fido2-spring-boot-autoconfigure:0.1.1-SNAPSHOT') api project(':spring-boot-starter:line-fido2-spring-boot-autoconfigure') implementation('org.springframework.boot:spring-boot-starter-data-jpa') @@ -55,10 +53,7 @@ dependencies { compileOnly 'org.projectlombok:lombok:1.18.18' annotationProcessor 'org.projectlombok:lombok:1.18.18' - implementation('com.linecorp.line.auth.fido.fido2:common:1.1.0-SNAPSHOT') - implementation ('org.springframework.boot:spring-boot-starter-jdbc') - compileOnly('org.springframework.boot:spring-boot-configuration-processor') }