Skip to content

Commit 03daa80

Browse files
committed
Remove (empty) plugin and module dependency configurations from build.gradle.kts and gradle.properties.
1 parent 64c7597 commit 03daa80

4 files changed

Lines changed: 1 addition & 26 deletions

File tree

.github/template-cleanup/gradle.properties

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,6 @@ pluginRepositoryUrl = https://github.com/%REPOSITORY%
66
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
77
platformVersion = 2025.2.6.1
88

9-
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
10-
# Example: platformPlugins = com.jetbrains.php:203.4449.22, org.intellij.scala:2023.3.27@EAP
11-
platformPlugins =
12-
# Example: platformBundledPlugins = com.intellij.java
13-
platformBundledPlugins =
14-
# Example: platformBundledModules = intellij.spellchecker
15-
platformBundledModules =
16-
179
# Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib
1810
kotlin.stdlib.default.dependency = false
1911

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
### Removed
1515

16+
- Remove (empty) plugin and module dependency configurations from `build.gradle.kts` and `gradle.properties`.
1617
- Remove `opentest4j` dependency from `build.gradle.kts` and `libs.versions.toml`, redundant since IntelliJ Platform 251+
1718
- Remove `gradleVersion` property and wrapper configuration as Gradle Wrapper should be updated with `./gradlew wrapper --gradle-version=9.4.1 && ./gradlew wrapper`
1819
- Remove Qodana configuration, dependencies, and related workflow steps.

build.gradle.kts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,6 @@ dependencies {
1515
// IntelliJ Platform Gradle Plugin Dependencies Extension - read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-dependencies-extension.html
1616
intellijPlatform {
1717
intellijIdea(providers.gradleProperty("platformVersion"))
18-
19-
// Plugin Dependencies. Uses `platformBundledPlugins` property from the gradle.properties file for bundled IntelliJ Platform plugins.
20-
bundledPlugins(providers.gradleProperty("platformBundledPlugins").map { it.split(',') })
21-
22-
// Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file for plugin from JetBrains Marketplace.
23-
plugins(providers.gradleProperty("platformPlugins").map { it.split(',') })
24-
25-
// Module Dependencies. Uses `platformBundledModules` property from the gradle.properties file for bundled IntelliJ Platform modules.
26-
bundledModules(providers.gradleProperty("platformBundledModules").map { it.split(',') })
27-
2818
testFramework(TestFrameworkType.Platform)
2919
}
3020
}

gradle.properties

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,6 @@ pluginRepositoryUrl = https://github.com/JetBrains/intellij-platform-plugin-temp
66
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
77
platformVersion = 2025.2.6.1
88

9-
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
10-
# Example: platformPlugins = com.jetbrains.php:203.4449.22, org.intellij.scala:2023.3.27@EAP
11-
platformPlugins =
12-
# Example: platformBundledPlugins = com.intellij.java
13-
platformBundledPlugins =
14-
# Example: platformBundledModules = intellij.spellchecker
15-
platformBundledModules =
16-
179
# Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib
1810
kotlin.stdlib.default.dependency = false
1911

0 commit comments

Comments
 (0)