suresh
03/18/2017, 5:42 AMjust-in-time In just-in-time mode, accessors are generated immediately after the evaluation of the plugins block, just before the evaluation of the build script body and, because of that, accessors for extensions and conventions registered later in the process are not available.
So the the following one does not work
apply {
plugin("application")
}
application { // 💣 Unresolved reference
mainClassName = "my.App"
}