The example is as follows:
[installer, deployer]*.pom*.whenConfigured {pom ->
pom.dependencies.find {dep -> dep.groupId == 'group3' && dep.artifactId == 'runtime' }.optional = true
}
What are “installer” and “deployer”? Where are they defined/sourced from?
Also, FWIW, I was unable to get the example working (I’m sure I’m doing something wrong!) My gradle build fails with:
“> Could not find property ‘installer’ on project ‘:libraft-agent’.”
The error message is explanatory but unhelpful since I don’t know what “installer” and “deployer” are.