Skip to content

Commit 3ca2955

Browse files
authored
Upgrade gradle to 9.3.0 (#8713)
Our CI environment is using Java 25 and I suspect it is easier and better to upgrade gradle than to specify a older version of Java. This isn't ready to merge yet - making a PR to check the presubmits. Although, to be clear, I didn't change the java version setting in `gradle.properties` (Java 21). I think this means that the CI environment can run gradle with Java 25, but gradle then uses Java 21 to build our plugin, so our plugin should stay the same (hopefully).
1 parent 645c105 commit 3ca2955

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ plugins {
4343
id("org.jetbrains.intellij.platform") version "2.10.5" // IntelliJ Platform Gradle Plugin
4444
id("org.jetbrains.kotlin.jvm") version "2.2.0" // Kotlin support
4545
id("org.jetbrains.changelog") version "2.2.0" // Gradle Changelog Plugin
46-
id("org.jetbrains.kotlinx.kover") version "0.9.0"
46+
id("org.jetbrains.kotlinx.kover") version "0.9.4"
4747
idea // IntelliJ IDEA support
4848
}
4949

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
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.13-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)