How would you execute ant tasks at different phases in a maven build cycle?
I used this in the build/plugins section
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>clean</id>
<phase>clean</phase>
<configuration>
<tasks>
<echo message = ">>>>>>>>>>>>>>>>>>>>>>>>>>clean"/>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<id>compile</id>
<phase>compile</phase>
<configuration>
<tasks>
<echo message = ">>>>>>>>>>>>>>>>>>>>>>>>>>>>compile"/>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<id>package</id>
<phase>package</phase>
<configuration>
<tasks>
<echo message = ">>>>>>>>>>>>>>>>>>>>>>>>>>>>package"/>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>