> but the copying never happens (I never see the echo message either). Below > is the result of running "mvn clean install". Can anyone tell why my antrun > task isn't running?
This is such an obvious issue that I almost wonder if you aren't trolling... ;-) > Tests run: 22, Failures: 0, Errors: 4, Skipped: 1 > > [INFO] > ------------------------------------------------------------------------ > [INFO] BUILD FAILURE You have test errors. The test phase must complete successfully before Maven will attempt to execute the package phase. Thus, your Antrun is never executing. Fix the test errors. Then try again. I bet the Antrun executes as you want... Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
