From 9c943a86bb8f80447ac57fd8e35b5d37542d348c Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Mon, 13 Apr 2026 16:51:56 +0200 Subject: [PATCH] Remove `gradleVersion` property and wrapper configuration as Gradle Wrapper should be updated with `./gradlew wrapper --gradle-version=9.4.1 && ./gradlew wrapper` --- .github/template-cleanup/gradle.properties | 3 --- CHANGELOG.md | 1 + build.gradle.kts | 4 ---- gradle.properties | 3 --- 4 files changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/template-cleanup/gradle.properties b/.github/template-cleanup/gradle.properties index f346846..f3e1cfd 100644 --- a/.github/template-cleanup/gradle.properties +++ b/.github/template-cleanup/gradle.properties @@ -14,9 +14,6 @@ platformBundledPlugins = # Example: platformBundledModules = intellij.spellchecker platformBundledModules = -# Gradle Releases -> https://github.com/gradle/gradle/releases -gradleVersion = 9.4.1 - # Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib kotlin.stdlib.default.dependency = false diff --git a/CHANGELOG.md b/CHANGELOG.md index 6719e1a..2ba470e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ ### Removed - Remove `opentest4j` dependency from `build.gradle.kts` and `libs.versions.toml`, redundant since IntelliJ Platform 251+ +- Remove `gradleVersion` property and wrapper configuration as Gradle Wrapper should be updated with `./gradlew wrapper --gradle-version=9.4.1 && ./gradlew wrapper` - Remove redundant Kotlin JVM toolchain configuration from `build.gradle.kts` - Remove redundant `intellijPlatform.pluginConfiguration.ideaVersion.sinceBuild` configuration from `build.gradle.kts` - Remove redundant `pluginSinceBuild` property from `gradle.properties` diff --git a/build.gradle.kts b/build.gradle.kts index ecffdfc..d1fc735 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -88,10 +88,6 @@ kover { } tasks { - wrapper { - gradleVersion = providers.gradleProperty("gradleVersion").get() - } - publishPlugin { dependsOn(patchChangelog) } diff --git a/gradle.properties b/gradle.properties index faf535b..899532c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -14,9 +14,6 @@ platformBundledPlugins = # Example: platformBundledModules = intellij.spellchecker platformBundledModules = -# Gradle Releases -> https://github.com/gradle/gradle/releases -gradleVersion = 9.4.1 - # Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib kotlin.stdlib.default.dependency = false