> I'm using Maven 3.0.3 on Mac 10.6.6. I want to run a custom Ant task but it > doesn't seem to run. I've included the plugin in the configuration below, > but my echo message is never printed (unsurprisingly everything after is ... > <artifactId>maven-antrun-plugin</artifactId> > <executions> > <execution> > <phase>test</phase>
Try binding the antrun plugin to the phase generate-test-sources rather than simply test? Assuming that works, we can talk about why in another reply... Wayne