Skip to content

Commit fe9eefc

Browse files
authored
Update dependencies (#253)
* Update Gradle to 8.5 * Update Kotlin and libraries
1 parent 5b6f2c6 commit fe9eefc

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

gradle/libs.versions.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[versions]
2-
kotlin = "1.9.21"
2+
kotlin = "1.9.22"
33
java = "8"
4-
dokka = "1.8.20"
5-
kover = "0.7.3"
4+
dokka = "1.9.10"
5+
kover = "0.7.5"
66
bcv = "0.13.2"
77
benchmark = "0.4.9"
8-
jmh = "1.36"
8+
jmh = "1.37"
99
coroutines = "1.7.3"
1010
animalsniffer = "1.7.1"
1111

gradle/wrapper/gradle-wrapper.jar

1.27 KB
Binary file not shown.
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
44
networkTimeout=10000
5+
validateDistributionUrl=true
56
zipStoreBase=GRADLE_USER_HOME
67
zipStorePath=wrapper/dists

gradlew

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,10 +130,13 @@ location of your Java installation."
130130
fi
131131
else
132132
JAVACMD=java
133-
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
133+
if ! command -v java >/dev/null 2>&1
134+
then
135+
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
134136
135137
Please set the JAVA_HOME variable in your environment to match the
136138
location of your Java installation."
139+
fi
137140
fi
138141

139142
# Increase the maximum file descriptors if we can.

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pluginManagement {
1414
}
1515

1616
plugins {
17-
id("org.gradle.toolchains.foojay-resolver-convention") version ("0.7.0")
17+
id("org.gradle.toolchains.foojay-resolver-convention") version ("0.8.0")
1818
}
1919

2020
rootProject.name = "kotlinx-io"

0 commit comments

Comments
 (0)