I've a maven build in which I use the surefire plugin to run some unit tests, and the failsafe plugin to run some integration tests. I would like a way to run just the failsafe plugin's tests.
It's not a good solution for me to add different profiles or anything in the pom, because it's a multimodule build and I don't want to have to edit every module's pom.
There are skip.tests and maven.test.skip and skipTests which stop all tests, and skipITs, which stops only the failsafe plugin.
So, is there a command-line flag for maven like skipITs, but instead with the functionality of "onlyITs"?
maven.test.skiporskipTests? – Thomas Jul 7 '11 at 14:38