diff --git a/CHANGELOG.md b/CHANGELOG.md index ff69ed3..cf390c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ ### Changed +- Use `intellijIdea(version)` dependency helper instead of `create(type, version)` - Upgrade Gradle Wrapper to `9.2.1` - Update `platformVersion` to `2025.2.5` - Change since build to `252` (2025.2) diff --git a/build.gradle.kts b/build.gradle.kts index cff4002..9c026e0 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -36,7 +36,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 { - create(providers.gradleProperty("platformType"), providers.gradleProperty("platformVersion")) + 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(',') })