Skip to content

Commit dd62720

Browse files
author
Zihlu Wang
authored
Merge pull request #60 from onixbyte/feature/upgrade-dependencies
2 parents 11af681 + 2e0e99c commit dd62720

File tree

7 files changed

+25
-29
lines changed

7 files changed

+25
-29
lines changed

devkit-core/build.gradle.kts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,6 @@ tasks.withType<Jar> {
5252
}
5353

5454
dependencies {
55-
val slf4jVersion: String by project
56-
val logbackVersion: String by project
57-
val junitVersion: String by project
58-
5955
compileOnly(libs.slf4j)
6056
implementation(libs.logback)
6157

gradle/libs.versions.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,22 @@
1616
[versions]
1717
slf4j = "2.0.17"
1818
logback = "1.5.18"
19-
jackson = "2.18.3"
19+
jackson = "2.18.4"
2020
jwt = "4.5.0"
2121
spring = "6.2.6"
22-
springBoot = "3.4.4"
22+
springBoot = "3.4.5"
2323
junit = "5.11.4"
2424

2525
[libraries]
2626
slf4j = { group = "org.slf4j", name = "slf4j-api", version.ref = "slf4j" }
2727
logback = { group = "ch.qos.logback", name = "logback-classic", version.ref = "logback" }
2828
jackson-core = { group = "com.fasterxml.jackson.core", name = "jackson-core", version.ref = "jackson" }
2929
jackson-databind = { group = "com.fasterxml.jackson.core", name = "jackson-databind", version.ref = "jackson" }
30-
jwt = { group = "com.auth0", name = "java-jwt", version.ref = "jwt" }
31-
spring-boot-autoconfigure = { group = "org.springframework.boot", name = "spring-boot-autoconfigure", version.ref = "springBoot" }
32-
spring-boot-starter-logging = { group = "org.springframework.boot", name = "spring-boot-starter-logging", version.ref = "springBoot" }
33-
spring-boot-configuration-processor = { group = "org.springframework.boot", name = "spring-boot-configuration-processor", version.ref = "springBoot" }
34-
spring-boot-starter-redis = { group = "org.springframework.boot", name = "spring-boot-starter-data-redis", version.ref = "springBoot" }
35-
spring-boot-starter-test = { group = "org.springframework.boot", name = "spring-boot-starter-test", version.ref = "springBoot" }
30+
jwt-core = { group = "com.auth0", name = "java-jwt", version.ref = "jwt" }
31+
springBoot-autoconfigure = { group = "org.springframework.boot", name = "spring-boot-autoconfigure", version.ref = "springBoot" }
32+
springBoot-starter-logging = { group = "org.springframework.boot", name = "spring-boot-starter-logging", version.ref = "springBoot" }
33+
springBoot-configurationProcessor = { group = "org.springframework.boot", name = "spring-boot-configuration-processor", version.ref = "springBoot" }
34+
springBoot-starter-redis = { group = "org.springframework.boot", name = "spring-boot-starter-data-redis", version.ref = "springBoot" }
35+
springBoot-starter-test = { group = "org.springframework.boot", name = "spring-boot-starter-test", version.ref = "springBoot" }
3636
junit-bom = { group = "org.junit", name = "junit-bom", version.ref = "junit" }
3737
junit-jupiter = { group = "org.junit.jupiter", name = "junit-jupiter", version.ref = "junit" }

key-pair-loader/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ dependencies {
5555
compileOnly(libs.slf4j)
5656
implementation(libs.logback)
5757
api(project(":devkit-core"))
58-
testImplementation(libs.jwt)
58+
testImplementation(libs.jwt.core)
5959
testImplementation(platform(libs.junit.bom))
6060
testImplementation(libs.junit.jupiter)
6161
}

property-guard-spring-boot-starter/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ dependencies {
5656
implementation(libs.logback)
5757
api(project(":devkit-core"))
5858
api(project(":devkit-utils"))
59-
implementation(libs.spring.boot.autoconfigure)
60-
implementation(libs.spring.boot.starter.logging)
61-
implementation(libs.spring.boot.configuration.processor)
59+
implementation(libs.springBoot.autoconfigure)
60+
implementation(libs.springBoot.starter.logging)
61+
implementation(libs.springBoot.configurationProcessor)
6262

6363
testImplementation(platform(libs.junit.bom))
6464
testImplementation(libs.junit.jupiter)
65-
testImplementation(libs.spring.boot.starter.test)
65+
testImplementation(libs.springBoot.starter.test)
6666
}
6767

6868
tasks.test {

simple-jwt-authzero/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ dependencies {
6060
api(project(":key-pair-loader"))
6161
api(project(":simple-jwt-facade"))
6262
api(libs.jackson.databind)
63-
api(libs.jwt)
63+
api(libs.jwt.core)
6464

6565
testImplementation(platform(libs.junit.bom))
6666
testImplementation(libs.junit.jupiter)

simple-jwt-spring-boot-starter/build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@ dependencies {
5858
api(project(":guid"))
5959
api(project(":simple-jwt-facade"))
6060
api(project(":simple-jwt-authzero"))
61-
implementation(libs.spring.boot.autoconfigure)
62-
implementation(libs.spring.boot.starter.logging)
63-
implementation(libs.spring.boot.configuration.processor)
64-
annotationProcessor(libs.spring.boot.configuration.processor)
61+
implementation(libs.springBoot.autoconfigure)
62+
implementation(libs.springBoot.starter.logging)
63+
implementation(libs.springBoot.configurationProcessor)
64+
annotationProcessor(libs.springBoot.configurationProcessor)
6565

6666
testImplementation(platform(libs.junit.bom))
6767
testImplementation(libs.junit.jupiter)
68-
testImplementation(libs.spring.boot.starter.test)
68+
testImplementation(libs.springBoot.starter.test)
6969
}
7070

7171
java {

simple-serial-spring-boot-starter/build.gradle.kts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,15 @@ dependencies {
5656
implementation(libs.logback)
5757

5858
implementation(libs.jackson.databind)
59-
implementation(libs.spring.boot.autoconfigure)
60-
implementation(libs.spring.boot.starter.logging)
61-
implementation(libs.spring.boot.configuration.processor)
62-
implementation(libs.spring.boot.starter.redis)
63-
annotationProcessor(libs.spring.boot.configuration.processor)
59+
implementation(libs.springBoot.autoconfigure)
60+
implementation(libs.springBoot.starter.logging)
61+
implementation(libs.springBoot.configurationProcessor)
62+
implementation(libs.springBoot.starter.redis)
63+
annotationProcessor(libs.springBoot.configurationProcessor)
6464

6565
testImplementation(platform(libs.junit.bom))
6666
testImplementation(libs.junit.jupiter)
67-
testImplementation(libs.spring.boot.starter.test)
67+
testImplementation(libs.springBoot.starter.test)
6868
}
6969

7070
tasks.test {

0 commit comments

Comments
 (0)