From 0cf6c9677eee178c034dacc27e5935596460af4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B0=95=EC=84=B1=EC=9A=B0?= Date: Fri, 8 Sep 2023 21:02:51 +0900 Subject: [PATCH] =?UTF-8?q?jwt-manager=20=EB=B2=84=EC=A0=84=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD=20(#8)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit jwt manager 버전을 변경하면 배틀에서 불필요한 환경변수를 추가할 필요가 없습니다. --- .github/workflows/reformat-java.yml | 17 ----------------- README.md | 2 +- build.gradle | 2 +- 3 files changed, 2 insertions(+), 19 deletions(-) delete mode 100644 .github/workflows/reformat-java.yml diff --git a/.github/workflows/reformat-java.yml b/.github/workflows/reformat-java.yml deleted file mode 100644 index 879a40b..0000000 --- a/.github/workflows/reformat-java.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: reformat-java -on: push - -jobs: - replace-google-format: - runs-on: ubuntu-latest - steps: - - name: Set up JDK 17 - uses: actions/setup-java@v3 - with: - java-version: "17" - distribution: "temurin" - - uses: actions/checkout@v3 - - uses: axel-op/googlejavaformat-action@v3 - with: - commit-message: 'style : Google Java Format' - args: '--replace --aosp' \ No newline at end of file diff --git a/README.md b/README.md index 315f24e..317021f 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ repositories { 2. Add the spring-security-authorization-manager dependency to your app-level build.gradle file: ``` dependencies { - implementation 'com.github.SWM-KAWAI-MANS:spring-security-authorization-manager:1.0.1' + implementation 'com.github.SWM-KAWAI-MANS:spring-security-authorization-manager:1.1.0' } ``` diff --git a/build.gradle b/build.gradle index e8fb180..8940bea 100644 --- a/build.gradle +++ b/build.gradle @@ -25,7 +25,7 @@ repositories { dependencies { implementation 'org.springframework.boot:spring-boot-starter-security:3.1.0' implementation 'org.springframework.boot:spring-boot-starter-web:3.1.0' - implementation 'com.github.SWM-KAWAI-MANS:jwt-manager:1.1.0' + implementation 'com.github.SWM-KAWAI-MANS:jwt-manager:1.3.0' compileOnly 'org.projectlombok:lombok:1.18.26' annotationProcessor 'org.projectlombok:lombok:1.18.26' testCompileOnly 'org.projectlombok:lombok:1.18.26'