IntelliJ Platform Gradle Plugin: Fixed intellij.plugins migration example

This commit is contained in:
Jakub Chrzanowski 2024-02-15 14:58:53 +01:00
parent 6c22de0147
commit eeaf3ee2b0
No known key found for this signature in database
GPG Key ID: C39095BFD769862E

View File

@ -96,8 +96,8 @@ repositories {
dependencies {
intellijPlatform {
plugins(properties("platformPlugins").map { it.split(',') })
bundledPlugins(properties("platformBundledPlugins").map { it.split(',') })
plugins(providers.gradleProperty("platformPlugins").map { it.split(',') })
bundledPlugins(providers.gradleProperty("platformBundledPlugins").map { it.split(',') })
}
}
```