efemoney
inline fun PluginDependenciesSpec.android(type: String = "application") = id("com.android.$type")
plugins
plugins { android() // OR android("library") }
h0tk3y
plugins { ... }
buildSrc
tapchicoma
Even the buildSrc declarations are not available in the plugins { ... } blocks
org.gradle.kotlin.dsl
object Versions { val somePlugin = "1.0.0" }
plugins { id("some.plugin.id") version Versions.somePlugin }
plugins { .. }
A modern programming language that makes developers happier.