jtonic
10/14/2017, 11:43 AMplugins {
application
}
apply {
plugin("kotlin")
}
application {
mainClassName = "ro.jtonic.handson.poi.TestKt"
}
dependencies {
compile(project(":dsl"))
}
Questions:
1. Are some plugins registered default so as one has to only apply plugin?
2. Does some plugins registration lead to their activation by default?
3. Are there some plugins for which the registration and activation is not required?
Note: All the above questions could make no sense in case I completely misunderstood the concept of gradle plugin
Antonel