From 3924430b5d2df9ff9dfde8202766ab7d2313102c Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Mon, 13 Apr 2026 16:57:51 +0200 Subject: [PATCH] Remove `platformVersion` property and inline its value in `build.gradle.kts` for cleaner configuration. --- .github/template-cleanup/gradle.properties | 3 --- CHANGELOG.md | 1 + build.gradle.kts | 2 +- gradle.properties | 3 --- 4 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/template-cleanup/gradle.properties b/.github/template-cleanup/gradle.properties index 112163e..3c93992 100644 --- a/.github/template-cleanup/gradle.properties +++ b/.github/template-cleanup/gradle.properties @@ -3,9 +3,6 @@ version = 0.0.1 pluginRepositoryUrl = https://github.com/%REPOSITORY% -# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension -platformVersion = 2025.2.6.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 dbe935e..7318019 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ ### Removed +- Remove `platformVersion` property and inline its value in `build.gradle.kts` for cleaner configuration. - Remove (empty) plugin and module dependency configurations from `build.gradle.kts` and `gradle.properties`. - 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` diff --git a/build.gradle.kts b/build.gradle.kts index fa226ca..7fb6625 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -14,7 +14,7 @@ dependencies { // IntelliJ Platform Gradle Plugin Dependencies Extension - read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-dependencies-extension.html intellijPlatform { - intellijIdea(providers.gradleProperty("platformVersion")) + intellijIdea("2025.2.6.1") testFramework(TestFrameworkType.Platform) } } diff --git a/gradle.properties b/gradle.properties index f61e504..0de66e6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,9 +3,6 @@ version = 2.4.1 pluginRepositoryUrl = https://github.com/JetBrains/intellij-platform-plugin-template -# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension -platformVersion = 2025.2.6.1 - # Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib kotlin.stdlib.default.dependency = false