Bump Gradle to 9.1.0 (#1228)

* Bump Gradle to 9.1.0
* Bump foojay resolver to 1.0.0
* Fix build logic on windows

Also, remove support for kotlin gradle plugin less than 1.8.x, because:

* Class `org.gradle.api.plugins.Convention` is no longer available in the classpath in Gradle
* Continued support for legacy plugin would require heavy reflection, which is brittle and hard to verify
* Kotlin 1.7 is 3 years old and no longer updated
This commit is contained in:
Daniel Chao
2025-10-08 08:54:43 -07:00
committed by GitHub
parent 55eac2088b
commit cf9d87373d
7 changed files with 8 additions and 69 deletions
+1 -1
View File
@@ -89,7 +89,7 @@ gradlePlugin {
gradlePluginTests {
// keep in sync with `PklPlugin.MIN_GRADLE_VERSION`
minGradleVersion = GradleVersion.version("8.2")
maxGradleVersion = GradleVersion.version("8.99")
maxGradleVersion = GradleVersion.version("9.99")
skippedGradleVersions = listOf()
}