I noticed for certain gradle plugins which use arr...
# gradle
b
I noticed for certain gradle plugins which use array assignment in their configuration, switching to gradle-script-kotlin seems to break the DSL style. For example, in the gradle-intellij-plugin (https://github.com/jetbrains/gradle-intellij-plugin#configuration), instead of
plugins = arrayOf("someplugin:version")
(as I would have expected, per the Groovy DSL), GSK expects a method invocation, where
plugins = ['someplugin:version']
now becomes
setPlugins("someplugin:version")
. This seems a little counterintuitive in terms of migration. Are there any plans to fix this? cc: @bamboo