Browse Source

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

changelog-update-2.4.0
Jakub Chrzanowski 3 weeks ago
parent
commit
71b7be9e41
No known key found for this signature in database
GPG Key ID: 56E9E73CB8E7486B
  1. 1
      CHANGELOG.md
  2. 2
      build.gradle.kts

1
CHANGELOG.md

@ -10,6 +10,7 @@
### Changed ### Changed
- Use `intellijIdea(version)` dependency helper instead of `create(type, version)`
- Upgrade Gradle Wrapper to `9.2.1` - Upgrade Gradle Wrapper to `9.2.1`
- Update `platformVersion` to `2025.2.5` - Update `platformVersion` to `2025.2.5`
- Change since build to `252` (2025.2) - Change since build to `252` (2025.2)

2
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 // IntelliJ Platform Gradle Plugin Dependencies Extension - read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-dependencies-extension.html
intellijPlatform { 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. // Plugin Dependencies. Uses `platformBundledPlugins` property from the gradle.properties file for bundled IntelliJ Platform plugins.
bundledPlugins(providers.gradleProperty("platformBundledPlugins").map { it.split(',') }) bundledPlugins(providers.gradleProperty("platformBundledPlugins").map { it.split(',') })

Loading…
Cancel
Save