From e3d900af0475be46979b2ec81d167ce207a746c5 Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Mon, 13 Apr 2026 16:56:55 +0200 Subject: [PATCH] Remove (empty) plugin and module dependency configurations from `build.gradle.kts` and `gradle.properties`. --- .github/template-cleanup/gradle.properties | 8 -------- CHANGELOG.md | 1 + build.gradle.kts | 10 ---------- gradle.properties | 8 -------- 4 files changed, 1 insertion(+), 26 deletions(-) diff --git a/.github/template-cleanup/gradle.properties b/.github/template-cleanup/gradle.properties index f3e1cfd..112163e 100644 --- a/.github/template-cleanup/gradle.properties +++ b/.github/template-cleanup/gradle.properties @@ -6,14 +6,6 @@ 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 -# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html -# Example: platformPlugins = com.jetbrains.php:203.4449.22, org.intellij.scala:2023.3.27@EAP -platformPlugins = -# Example: platformBundledPlugins = com.intellij.java -platformBundledPlugins = -# Example: platformBundledModules = intellij.spellchecker -platformBundledModules = - # 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 b5fefd3..dbe935e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ ### Removed +- 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` - Remove Qodana configuration, dependencies, and related workflow steps. diff --git a/build.gradle.kts b/build.gradle.kts index 20d6b73..fa226ca 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -15,16 +15,6 @@ 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")) - - // Plugin Dependencies. Uses `platformBundledPlugins` property from the gradle.properties file for bundled IntelliJ Platform plugins. - bundledPlugins(providers.gradleProperty("platformBundledPlugins").map { it.split(',') }) - - // Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file for plugin from JetBrains Marketplace. - plugins(providers.gradleProperty("platformPlugins").map { it.split(',') }) - - // Module Dependencies. Uses `platformBundledModules` property from the gradle.properties file for bundled IntelliJ Platform modules. - bundledModules(providers.gradleProperty("platformBundledModules").map { it.split(',') }) - testFramework(TestFrameworkType.Platform) } } diff --git a/gradle.properties b/gradle.properties index 899532c..f61e504 100644 --- a/gradle.properties +++ b/gradle.properties @@ -6,14 +6,6 @@ pluginRepositoryUrl = https://github.com/JetBrains/intellij-platform-plugin-temp # IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension platformVersion = 2025.2.6.1 -# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html -# Example: platformPlugins = com.jetbrains.php:203.4449.22, org.intellij.scala:2023.3.27@EAP -platformPlugins = -# Example: platformBundledPlugins = com.intellij.java -platformBundledPlugins = -# Example: platformBundledModules = intellij.spellchecker -platformBundledModules = - # Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib kotlin.stdlib.default.dependency = false