@@ -34,12 +34,6 @@ dependencies {
3434
3535 testRuntimeOnly(" org.junit.platform:junit-platform-launcher" )
3636
37- // This dependency is exported to consumers, that is to say found on their compile classpath.
38- api(libs.commons.math3)
39-
40- // This dependency is used internally, and not exposed to consumers on their own compile classpath.
41- implementation(libs.guava)
42-
4337 implementation(platform(" com.squareup.okhttp3:okhttp-bom:4.12.0" ))
4438 implementation(" com.squareup.okhttp3:okhttp" )
4539 implementation(" com.fasterxml.jackson.core:jackson-databind:2.18.2" )
@@ -48,7 +42,7 @@ dependencies {
4842 runtimeOnly(" io.jsonwebtoken:jjwt-impl:0.12.6" )
4943 runtimeOnly(" io.jsonwebtoken:jjwt-jackson:0.12.6" )
5044 testImplementation(" org.junit.jupiter:junit-jupiter-engine:5.8.2" )
51- testImplementation(" org.apache.commons:commons-lang3:3.12 .0" )
45+ testImplementation(" org.apache.commons:commons-lang3:3.18 .0" )
5246 compileOnly(" org.projectlombok:lombok:1.18.32" )
5347 annotationProcessor(" org.projectlombok:lombok:1.18.32" )
5448 testCompileOnly(" org.projectlombok:lombok:1.18.32" )
@@ -68,7 +62,7 @@ tasks.named<Test>("test") {
6862
6963 doFirst {
7064 // Inject local properties into tests runtime system properties
71- localProperties.forEach { k, v ->
65+ localProperties.forEach { ( k, v) ->
7266 systemProperty(k.toString(), v.toString())
7367 }
7468 }
@@ -95,7 +89,7 @@ sourceSets {
9589
9690spotless {
9791 java {
98- googleJavaFormat()
92+ googleJavaFormat(" 1.28.0 " )
9993 }
10094}
10195
0 commit comments