Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions devkit-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,6 @@ tasks.withType<Jar> {
}

dependencies {
val slf4jVersion: String by project
val logbackVersion: String by project
val junitVersion: String by project

compileOnly(libs.slf4j)
implementation(libs.logback)

Expand Down
16 changes: 8 additions & 8 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,22 @@
[versions]
slf4j = "2.0.17"
logback = "1.5.18"
jackson = "2.18.3"
jackson = "2.18.4"
jwt = "4.5.0"
spring = "6.2.6"
springBoot = "3.4.4"
springBoot = "3.4.5"
junit = "5.11.4"

[libraries]
slf4j = { group = "org.slf4j", name = "slf4j-api", version.ref = "slf4j" }
logback = { group = "ch.qos.logback", name = "logback-classic", version.ref = "logback" }
jackson-core = { group = "com.fasterxml.jackson.core", name = "jackson-core", version.ref = "jackson" }
jackson-databind = { group = "com.fasterxml.jackson.core", name = "jackson-databind", version.ref = "jackson" }
jwt = { group = "com.auth0", name = "java-jwt", version.ref = "jwt" }
spring-boot-autoconfigure = { group = "org.springframework.boot", name = "spring-boot-autoconfigure", version.ref = "springBoot" }
spring-boot-starter-logging = { group = "org.springframework.boot", name = "spring-boot-starter-logging", version.ref = "springBoot" }
spring-boot-configuration-processor = { group = "org.springframework.boot", name = "spring-boot-configuration-processor", version.ref = "springBoot" }
spring-boot-starter-redis = { group = "org.springframework.boot", name = "spring-boot-starter-data-redis", version.ref = "springBoot" }
spring-boot-starter-test = { group = "org.springframework.boot", name = "spring-boot-starter-test", version.ref = "springBoot" }
jwt-core = { group = "com.auth0", name = "java-jwt", version.ref = "jwt" }
springBoot-autoconfigure = { group = "org.springframework.boot", name = "spring-boot-autoconfigure", version.ref = "springBoot" }
springBoot-starter-logging = { group = "org.springframework.boot", name = "spring-boot-starter-logging", version.ref = "springBoot" }
springBoot-configurationProcessor = { group = "org.springframework.boot", name = "spring-boot-configuration-processor", version.ref = "springBoot" }
springBoot-starter-redis = { group = "org.springframework.boot", name = "spring-boot-starter-data-redis", version.ref = "springBoot" }
springBoot-starter-test = { group = "org.springframework.boot", name = "spring-boot-starter-test", version.ref = "springBoot" }
junit-bom = { group = "org.junit", name = "junit-bom", version.ref = "junit" }
junit-jupiter = { group = "org.junit.jupiter", name = "junit-jupiter", version.ref = "junit" }
2 changes: 1 addition & 1 deletion key-pair-loader/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ dependencies {
compileOnly(libs.slf4j)
implementation(libs.logback)
api(project(":devkit-core"))
testImplementation(libs.jwt)
testImplementation(libs.jwt.core)
testImplementation(platform(libs.junit.bom))
testImplementation(libs.junit.jupiter)
}
Expand Down
8 changes: 4 additions & 4 deletions property-guard-spring-boot-starter/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ dependencies {
implementation(libs.logback)
api(project(":devkit-core"))
api(project(":devkit-utils"))
implementation(libs.spring.boot.autoconfigure)
implementation(libs.spring.boot.starter.logging)
implementation(libs.spring.boot.configuration.processor)
implementation(libs.springBoot.autoconfigure)
implementation(libs.springBoot.starter.logging)
implementation(libs.springBoot.configurationProcessor)

testImplementation(platform(libs.junit.bom))
testImplementation(libs.junit.jupiter)
testImplementation(libs.spring.boot.starter.test)
testImplementation(libs.springBoot.starter.test)
}

tasks.test {
Expand Down
2 changes: 1 addition & 1 deletion simple-jwt-authzero/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ dependencies {
api(project(":key-pair-loader"))
api(project(":simple-jwt-facade"))
api(libs.jackson.databind)
api(libs.jwt)
api(libs.jwt.core)

testImplementation(platform(libs.junit.bom))
testImplementation(libs.junit.jupiter)
Expand Down
10 changes: 5 additions & 5 deletions simple-jwt-spring-boot-starter/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,14 @@ dependencies {
api(project(":guid"))
api(project(":simple-jwt-facade"))
api(project(":simple-jwt-authzero"))
implementation(libs.spring.boot.autoconfigure)
implementation(libs.spring.boot.starter.logging)
implementation(libs.spring.boot.configuration.processor)
annotationProcessor(libs.spring.boot.configuration.processor)
implementation(libs.springBoot.autoconfigure)
implementation(libs.springBoot.starter.logging)
implementation(libs.springBoot.configurationProcessor)
annotationProcessor(libs.springBoot.configurationProcessor)

testImplementation(platform(libs.junit.bom))
testImplementation(libs.junit.jupiter)
testImplementation(libs.spring.boot.starter.test)
testImplementation(libs.springBoot.starter.test)
}

java {
Expand Down
12 changes: 6 additions & 6 deletions simple-serial-spring-boot-starter/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ dependencies {
implementation(libs.logback)

implementation(libs.jackson.databind)
implementation(libs.spring.boot.autoconfigure)
implementation(libs.spring.boot.starter.logging)
implementation(libs.spring.boot.configuration.processor)
implementation(libs.spring.boot.starter.redis)
annotationProcessor(libs.spring.boot.configuration.processor)
implementation(libs.springBoot.autoconfigure)
implementation(libs.springBoot.starter.logging)
implementation(libs.springBoot.configurationProcessor)
implementation(libs.springBoot.starter.redis)
annotationProcessor(libs.springBoot.configurationProcessor)

testImplementation(platform(libs.junit.bom))
testImplementation(libs.junit.jupiter)
testImplementation(libs.spring.boot.starter.test)
testImplementation(libs.springBoot.starter.test)
}

tasks.test {
Expand Down