pom.build.unitTest.resources is made up of several resource elements.pom.build.unitTest.resources doesn't exist.Fixing a chicken-and-egg problem. The "test" and "compile-tests" tasks were putting target/${final.name}.jar into the classpath.
But... the "jar" target that creates that jarfile is dependent upon those two targets.
So, there was no way for the first two to succeed since the jarfile couldn't be created. Now, the first two include target/classes in the classpath and all is well.