I want to extend a maven2 POM to run some post processing on my integration test results. I added a java:exec
plugin and bound it to the post-integration-test
phase.
All is fine when the tests pass but if I get any test failures then the post processing isn't executed.
Question: Is there an option to force a task, regardless of the results of the integration test phase?