Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [ 17, 21 ]
java: [ 17, 21, 25 ]
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@
jib = 'com.google.cloud.tools.jib:3.4.5'
jsonschema2pojo = 'org.jsonschema2pojo:1.2.2'
nexus-publish = 'io.github.gradle-nexus.publish-plugin:1.3.0'
openapi-generator = 'org.openapi.generator:7.5.0'
openapi-generator = 'org.openapi.generator:7.17.0'
protobuf = 'com.google.protobuf:0.9.4'
shadow = 'com.gradleup.shadow:9.0.0-beta8'
spotless = 'com.diffplug.spotless:7.2.1'
Expand All @@ -220,7 +220,7 @@

[versions]
jackson = '2.18.4'
junit = '5.10.2'
junit = '5.14.1'
kotlinx-coroutines = '1.10.2'
kotlinx-serialization = '1.9.0'
ksp = '2.2.10-2.0.2'
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.0-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
6 changes: 3 additions & 3 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions sdk-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ dependencies {
testImplementation(libs.kotlinx.serialization.core)
testImplementation(libs.vertx.junit5)
testImplementation(libs.vertx.kotlin.coroutines)
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}

// Configure source sets for protobuf plugin and jsonschema2pojo
Expand Down
1 change: 1 addition & 0 deletions sdk-request-identity/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ dependencies {

testImplementation(libs.junit.jupiter)
testImplementation(libs.assertj)
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}
1 change: 1 addition & 0 deletions sdk-serde-jackson/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ dependencies {

testImplementation(libs.junit.jupiter)
testImplementation(libs.assertj)
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}

tasks.withType<Javadoc> { isFailOnError = false }
1 change: 1 addition & 0 deletions sdk-serde-kotlinx/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ dependencies {

testImplementation(libs.junit.jupiter)
testImplementation(libs.assertj)
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}
1 change: 1 addition & 0 deletions sdk-spring-boot-kotlin-starter/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ dependencies {
testImplementation(project(":sdk-core"))
testImplementation(libs.jackson.annotations)
testImplementation(libs.jackson.databind)
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}
1 change: 1 addition & 0 deletions sdk-spring-boot-starter/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ dependencies {
testImplementation(libs.jackson.databind)
testImplementation(project(":sdk-serde-jackson"))
testImplementation(project(":sdk-testing"))
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}

tasks.withType<JavaCompile> { options.compilerArgs.add("-parameters") }
1 change: 1 addition & 0 deletions sdk-spring-boot/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ dependencies {
testImplementation(libs.spring.boot.starter)
testImplementation(libs.spring.boot.starter.json)
testImplementation(libs.spring.boot.starter.test)
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}

tasks.withType<JavaCompile> { options.compilerArgs.add("-parameters") }
Expand Down
1 change: 1 addition & 0 deletions sdk-testing/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ dependencies {
testImplementation(libs.assertj)
testImplementation(libs.junit.jupiter)
testImplementation(libs.log4j.core)
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}
Loading