Use intellijIdea(version) dependency helper instead of create(type, version)

This commit is contained in:
Jakub Chrzanowski 2025-11-25 19:30:02 +01:00
parent 7888f159fb
commit 71b7be9e41
No known key found for this signature in database
GPG Key ID: 56E9E73CB8E7486B
2 changed files with 2 additions and 1 deletions

View File

@ -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)

View File

@ -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(',') })