I would like to have in animalSniffer plugin one task to depend on compilation of all production classes (Java, Groovy, Scala) in all sourceSets and the second to depend on compilation of all test classes in all sourceSets (possibly separate test
and integrationTest
).
I wouldn't like to depend on *classes
tasks as *classes
tasks should depend animalSniffer
tasks (which detects Java version API incompatibilities after the compilation and can stop the build).
Is there a better way in Gradle to achieve that than checking if an instance of AbstractCompile
task name starts with "compileTest"?