Skip to content

Commit cd855be

Browse files
committedFeb 13, 2025·
build: Upgrade to Gradle 8.13 RC1
While ORT usually sticks to final versions, this release candidate fixes a very annoying issue [1] where Gradle picks the wrong Java toolchain to run its daemon. Also see the upgrade instructions [2] for the dropped `testType` property. [1]: gradle/gradle#30652 [2]: https://docs.gradle.org/8.13-rc-1/userguide/upgrading_version_8.html#changes_8.13 Signed-off-by: Sebastian Schuberth <sebastian@doubleopen.org>
1 parent 4c9d11c commit cd855be

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed
 

‎buildSrc/src/main/kotlin/ort-kotlin-conventions.gradle.kts

+1-7
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,7 @@ testing {
6565
}
6666
}
6767

68-
register<JvmTestSuite>("funTest") {
69-
sources {
70-
kotlin {
71-
testType = TestSuiteType.FUNCTIONAL_TEST
72-
}
73-
}
74-
}
68+
register<JvmTestSuite>("funTest")
7569
}
7670
}
7771

‎gradle/wrapper/gradle-wrapper.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=8d97a97984f6cbd2b85fe4c60a743440a347544bf18818048e611f5288d46c94
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
3+
distributionSha256Sum=3b3565efd2df2dd999774b6ef8ea571878c5532cbac6dbaaeb4b2731f42e6704
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-rc-1-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)
Please sign in to comment.