Does the order of the plugin in the plugins
block matter? Are they applied in the order they are specified. I’m running into an issue with a plugin I own where it cannot resolve the assemble
task even though I’ve already specified the java
plugin before it in the plugins
block. Strangely did not encounter this behavior when I used the old style buildscript plugin AND none of my tests seemed to be okay with it.
plugins {
id `java`
id `my-plugin` version `X`
}