<@U1BASJRMW> As per the doc, ```just-in-time In j...
# gradle
s
@mkobit As per the doc,
Copy code
just-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"
}
👍 1