OK, I see. It's because I'm using `the<Applicat...
# gradle
i
OK, I see. It's because I'm using
the<ApplicationPluginConvention>
inside a task and in 0.16.3 it looks up the extension in the task and not in the enclosing project. Replacing it with
project.the<ApplicationPluginConvention>
fixes the problem.