Skip to content
This repository was archived by the owner on Jan 27, 2026. It is now read-only.

Commit a929211

Browse files
committed
Bump Gradle to 8.5
1 parent 2f601e5 commit a929211

File tree

4 files changed

+13
-16
lines changed

4 files changed

+13
-16
lines changed

build.gradle.kts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,6 @@ repositories {
3737
mavenCentral()
3838
}
3939

40-
kotlin {
41-
jvmToolchain(depVersions["javaMajor"]!!.toInt())
42-
}
43-
4440
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
4541
kotlinOptions {
4642
allWarningsAsErrors = true
@@ -213,7 +209,7 @@ spotbugs {
213209
tasks.withType<com.github.spotbugs.snom.SpotBugsTask>().configureEach {
214210
reports.create("html") {
215211
required.set(true)
216-
outputLocation.set(file("$buildDir/reports/${this@configureEach.name}.html"))
212+
outputLocation.set(file("${layout.buildDirectory.get()}/reports/${this@configureEach.name}.html"))
217213
setStylesheet("fancy-hist.xsl")
218214
}
219215
}
@@ -229,7 +225,7 @@ tasks.jacocoTestReport {
229225

230226
tasks.register("cleanLeaveBuildDir") {
231227
doLast {
232-
project.delete(files("$buildDir/*"))
228+
project.delete(files("${layout.buildDirectory.get()}/*"))
233229
}
234230
}
235231

gradle/wrapper/gradle-wrapper.jar

-19.4 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=38f66cd6eef217b4c35855bb11ea4e9fbc53594ccccb5fb82dfd317ef8c2c5a3
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
3+
distributionSha256Sum=9d926787066a081739e8200858338b4a69e837c3a821a33aca9db09dd4a41026
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 9 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)