I have a project with several modules. When all tests pass, Maven test runs them all.
When tests fail in the first module, maven will not continue to the next projec
Can you test with surefire 2.6 and either configure surefire with testFailureIgnore=true. Or on the command line:
testFailureIgnore=true
mvn install -Dmaven.test.failure.ignore=true