If Kotlin DSL becomes the default language for Gra...
# gradle
d
If Kotlin DSL becomes the default language for Gradle, do you think we’d have enough power to shape the design of Gradle to encourage no-magic plugin usage like this?
Copy code
subprojects { subproject -> { val publishing = subproject.usePlugin(`maven-publish`).publishing } }
without the
plugins
section and an out-of-the-blue
publishing
section?