I had the same problem, and I could not find a solution, so I decided to fix it myself. I checked the source code for the latest version of maven-plugin-test-harness (which is now 2.0-alpha-1) and put it in my own github repository.
You will need to check the code and create it locally.
The only change you should make to your project is to replace the dependencies in your POM. I used my own domain / groupId instead of Apache to avoid conflicts (and confusion) with future versions of Apache.
This is what you need to put in POM:
<dependency> <groupId>com.menttis.maven.plugin-testing</groupId> <artifactId>maven-plugin-testing-harness</artifactId> <version>2.0.1</version> <scope>test</scope> </dependency>
And this is the repository where you can get the code from: https://github.com/grighetto/maven-plugin-testing-harness
source share