Skip to content

Commit

Permalink
refactor: 구체적인 버전은 따로 변수로 추출해서 한 곳에서 관리
Browse files Browse the repository at this point in the history
  • Loading branch information
westzeroright committed Sep 24, 2024
1 parent 98a0fc1 commit 9f90e1a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ buildscript {
spring_boot_version = '3.3.3'
spring_dependency_management_version = '1.1.6'
spotless_version = '6.25.0'
jjwt_version = '0.11.5'
}
}

Expand Down Expand Up @@ -36,7 +37,7 @@ dependencies {
// implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'io.jsonwebtoken:jjwt-api:0.11.5'
implementation "io.jsonwebtoken:jjwt-api:${jjwt_version}"

testImplementation 'org.springframework.boot:spring-boot-starter-test'
// testImplementation 'org.springframework.security:spring-security-test'
Expand All @@ -54,8 +55,8 @@ dependencies {

runtimeOnly 'com.h2database:h2'
runtimeOnly 'com.mysql:mysql-connector-j'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.5'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.5'
runtimeOnly "io.jsonwebtoken:jjwt-impl:${jjwt_version}"
runtimeOnly "io.jsonwebtoken:jjwt-jackson:${jjwt_version}"

testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
Expand Down

0 comments on commit 9f90e1a

Please sign in to comment.