Skip to content

Commit 14b3c4f

Browse files
committed
chore: Update dependencies
* Gradle from 8.12.1 to 8.13 * Kotlin from 2.1.10 to 2.1.20 * KotlinX from 1.10.1 to 1.10.2 * Jupiter from 5.11.4 to 5.12.2 feat: Use Gradle bin distribution instead of all
1 parent fb999b2 commit 14b3c4f

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
tasks.wrapper {
22
gradleVersion = libs.versions.gradlew.get()
3-
distributionType = Wrapper.DistributionType.ALL
3+
distributionType = Wrapper.DistributionType.BIN
44
}

gradle/libs.versions.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[versions]
2-
gradlew = "8.12.1"
3-
taskTree = "4.0.0"
2+
gradlew = "8.13"
3+
taskTree = "4.0.1"
44

55
java = "23"
6-
kotlin = "2.1.10"
7-
kotlinX = "1.10.1"
6+
kotlin = "2.1.20"
7+
kotlinX = "1.10.2"
88

9-
jupiter = "5.11.4"
9+
jupiter = "5.12.2"
1010

1111
[libraries]
1212
kotlinPlugin = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" }

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

gradlew

+1-2
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ done
8686
# shellcheck disable=SC2034
8787
APP_BASE_NAME=${0##*/}
8888
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
89-
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90-
' "$PWD" ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
9190

9291
# Use the maximum available, or set MAX_FD != -1 to use that value.
9392
MAX_FD=maximum

0 commit comments

Comments
 (0)