Вам необходимо использовать maven-plugin-testing-harness ,
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-plugin-testing-harness</artifactId>
<version>1.1</version>
<scope>test</scope>
</dependency>
Вы получаете классы юнит-теста из AbstractMojoTestCase .
Вам необходимо создать POM, как правило, в папке src/test/resources
.
<project>
<build>
<plugins>
<plugin>
<groupId>com.mydomain,mytools</groupId>
<artifactId>mytool-maven-plugin</artifactId>
<configuration>
<!-- Insert configuration settings here -->
</configuration>
<executions>
<execution>
<goals>
<goal>mygoal</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Используйте AbstractMojoTest.lookupMojo (String, File) (или один из других вариантов), чтобы загрузить Mojo для конкретной цели и выполнить ее.
final File testPom = new File(PlexusTestCase.getBasedir(), "/target/test-classes/mytools-plugin-config.xml");
Mojo mojo = this.lookupMojo("mygoal", testPom);
// Insert assertions to validate that your plugin was initialised correctly
mojo.execute();
// Insert assertions to validate that your plugin behaved as expected
Я создал свой собственный плагин, к которому вы можете обратиться за разъяснениями http://ldap -plugin.btmatthews.com ,