Dmitry Kandalov
06/10/2019, 6:09 PMbuild.gradle
for a plugin I can specify other plugins it depends, e.g.
intellij {
plugins = ["github", "junit"]
}
however it doesn’t work with build.gradle.kts
, e.g.
configure<IntelliJPluginExtension> {
plugins = arrayOf("") // <-- Val cannot be reassigned
}
Is it a bug?breandan
06/10/2019, 6:37 PMsetPlugins("pluginA", "pluginB")
Dmitry Kandalov
06/10/2019, 6:41 PMbreandan
06/12/2023, 1:43 AM8.2-rc-2
, so you can now write plugins = listOf(...)
directly.