Skip to content

Commit 755f60d

Browse files
committed
bump dependencies 25/04/25
1 parent c78d78e commit 755f60d

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
distribution: [ 'temurin', 'corretto' ]
10-
java: [ '17', '21', '23' ] # replace '23' with '24' when JMH & Kotlin support it
10+
java: [ '17', '21', '24' ] # replace '24' with '25' when Gradle, JMH & Kotlin support it
1111
runs-on: 'ubuntu-latest'
1212
steps:
1313
- uses: actions/checkout@v4

build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ configure(listOf(tasks.release, tasks.runBuildTasks)) {
8787
}
8888
}
8989

90-
// when version changes :
90+
// when the Gradle version changes:
9191
// -> execute ./gradlew wrapper, then remove .gradle directory, then execute ./gradlew wrapper again
9292
tasks.wrapper {
93-
gradleVersion = "8.13"
93+
gradleVersion = "8.14"
9494
distributionType = Wrapper.DistributionType.ALL
9595
}

gradle/libs.versions.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ conscrypt = "2.5.2"
2727

2828
# test + test fixtures
2929
# https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api
30-
junit = "5.12.1"
30+
junit = "5.12.2"
3131
# https://mvnrepository.com/artifact/org.assertj/assertj-core
3232
assertj = "3.27.3"
3333
# https://mvnrepository.com/artifact/org.hamcrest/hamcrest

gradle/wrapper/gradle-wrapper.jar

59 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

+1-1
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.13-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

+2-2
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.
@@ -213,7 +213,7 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
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

+2-2
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

0 commit comments

Comments
 (0)