> runtime does not know abt how the test are ran, rather external test exec > just exports a xml file that is fully JUnit result compatible. And if there > is a failure reported in this exported xml file, I need to cause the build > to fail like above. That means I want maven to parse this report xml, treat > it similar to any other tests and cause build to fail. Currently my build
Write your own plugin to call your external test and report failures, either by parsing the xml or some other approach - or - Adjust your external test tool so it returns "false" (1) when it has a failure which Maven should pick up and understand to mean "failure encountered" and it will fail the build Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
