Making Maven run all tests, even when some fail
17:29 13 Nov 2010

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 project. I have testFailureIgnore set to true in Surefire settings, but it doesn't help.

How do I make maven run all tests regardless of earlier failures?

java maven-2 maven-surefire-plugin