Skip to content

Commit b684c3a

Browse files
Bump gradle to 9, bump bunch of deps
1 parent 21aa97b commit b684c3a

File tree

13 files changed

+16
-8
lines changed

13 files changed

+16
-8
lines changed

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@
206206
jib = 'com.google.cloud.tools.jib:3.4.5'
207207
jsonschema2pojo = 'org.jsonschema2pojo:1.2.2'
208208
nexus-publish = 'io.github.gradle-nexus.publish-plugin:1.3.0'
209-
openapi-generator = 'org.openapi.generator:7.5.0'
209+
openapi-generator = 'org.openapi.generator:7.17.0'
210210
protobuf = 'com.google.protobuf:0.9.4'
211211
shadow = 'com.gradleup.shadow:9.0.0-beta8'
212212
spotless = 'com.diffplug.spotless:7.2.1'
@@ -220,7 +220,7 @@
220220

221221
[versions]
222222
jackson = '2.18.4'
223-
junit = '5.10.2'
223+
junit = '5.14.1'
224224
kotlinx-coroutines = '1.10.2'
225225
kotlinx-serialization = '1.9.0'
226226
ksp = '2.2.10-2.0.2'

gradle/wrapper/gradle-wrapper.jar

181 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ case "$( uname )" in #(
114114
NONSTOP* ) nonstop=true ;;
115115
esac
116116

117-
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
117+
CLASSPATH="\\\"\\\""
118118

119119

120120
# Determine the Java command to use to start the JVM.
@@ -205,15 +205,15 @@ fi
205205
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
206206

207207
# Collect all arguments for the java command:
208-
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
208+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
209209
# and any embedded shellness will be escaped.
210210
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
211211
# treated as '${Hostname}' itself on the command line.
212212

213213
set -- \
214214
"-Dorg.gradle.appname=$APP_BASE_NAME" \
215215
-classpath "$CLASSPATH" \
216-
org.gradle.wrapper.GradleWrapperMain \
216+
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
217217
"$@"
218218

219219
# Stop when "xargs" is not available.

gradlew.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ goto fail
7070
:execute
7171
@rem Setup the command line
7272

73-
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
73+
set CLASSPATH=
7474

7575

7676
@rem Execute Gradle
77-
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
77+
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
7878

7979
:end
8080
@rem End local scope for the variables with windows NT shell

sdk-core/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ dependencies {
6868
testImplementation(libs.kotlinx.serialization.core)
6969
testImplementation(libs.vertx.junit5)
7070
testImplementation(libs.vertx.kotlin.coroutines)
71+
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
7172
}
7273

7374
// Configure source sets for protobuf plugin and jsonschema2pojo

sdk-request-identity/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ dependencies {
1818

1919
testImplementation(libs.junit.jupiter)
2020
testImplementation(libs.assertj)
21+
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
2122
}

sdk-serde-jackson/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ dependencies {
2020

2121
testImplementation(libs.junit.jupiter)
2222
testImplementation(libs.assertj)
23+
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
2324
}
2425

2526
tasks.withType<Javadoc> { isFailOnError = false }

sdk-serde-kotlinx/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ dependencies {
1616

1717
testImplementation(libs.junit.jupiter)
1818
testImplementation(libs.assertj)
19+
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1920
}

sdk-spring-boot-kotlin-starter/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,5 @@ dependencies {
2828
testImplementation(project(":sdk-core"))
2929
testImplementation(libs.jackson.annotations)
3030
testImplementation(libs.jackson.databind)
31+
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
3132
}

0 commit comments

Comments
 (0)