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. Is there an option to force a task, regardless of the results of the integration test phase?
|
feedback
|
|
Our POM was using the Surefire plugin to execute the integration tests but it looks like that was a mistake. The Failsafe plugin is intended to address this issue. From the documentation:
| ||||
|
feedback
|