I had an odd surprise today where we had a precompiled script plugin like this:
plugins {
id("com.github.rmee.jdk-bootstrap")
}
// Other config would follow here
The plugin in question is one of the ones here, and I can see from their code that the failure is when it tries to lookup the “wrapper” task, which apparently does not exist in the project.
I have initially filed the ticket with them on the basis that there is probably a plugin they have to apply before looking up the task, but as I think more about it, the “wrapper” task is one which I thought was just always there by default.
Is that not the case after all? The docs for the wrapper task certainly seem to imply that it’s built-in.