Skip to content

Commit 13dee18

Browse files
committed
Remove platformVersion property and inline its value in build.gradle.kts for cleaner configuration.
1 parent 03daa80 commit 13dee18

4 files changed

Lines changed: 2 additions & 7 deletions

File tree

.github/template-cleanup/gradle.properties

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ version = 0.0.1
33

44
pluginRepositoryUrl = https://github.com/%REPOSITORY%
55

6-
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
7-
platformVersion = 2025.2.6.1
8-
96
# Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib
107
kotlin.stdlib.default.dependency = false
118

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 `platformVersion` property and inline its value in `build.gradle.kts` for cleaner configuration.
1617
- Remove (empty) plugin and module dependency configurations from `build.gradle.kts` and `gradle.properties`.
1718
- Remove `opentest4j` dependency from `build.gradle.kts` and `libs.versions.toml`, redundant since IntelliJ Platform 251+
1819
- Remove `gradleVersion` property and wrapper configuration as Gradle Wrapper should be updated with `./gradlew wrapper --gradle-version=9.4.1 && ./gradlew wrapper`

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies {
1414

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 {
17-
intellijIdea(providers.gradleProperty("platformVersion"))
17+
intellijIdea("2025.2.6.1")
1818
testFramework(TestFrameworkType.Platform)
1919
}
2020
}

gradle.properties

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ version = 2.4.1
33

44
pluginRepositoryUrl = https://github.com/JetBrains/intellij-platform-plugin-template
55

6-
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
7-
platformVersion = 2025.2.6.1
8-
96
# Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib
107
kotlin.stdlib.default.dependency = false
118

0 commit comments

Comments
 (0)