Details
-
Test
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.1
-
None
-
None
-
n/a
Description
The JarMojoTest class uses a wrong package name:
import org.apache.maven.plugins.testing.AbstractMojoTestCase;
it should be:
import org.apache.maven.plugin.testing.AbstractMojoTestCase;
(the difference is in plugins versus plugin). This is a class in the maven-plugin-testing-harness artifact.
The same goes for the test pom.xml it uses. See the attached patch for details.