Does the plugin goal below get executed before or after the completion of the install phase when I exec 'mvn clean install' command? Is there a way to configure the before or after order?
<profile>
<id>ant-explode</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>install</phase>
<configuration>
<tasks>
<echo message="Invoking
explode ant target..."/>
<ant
antfile="build.xml" target="explode"/>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
--
View this message in context:
http://maven.40175.n5.nabble.com/when-does-the-plugin-goal-get-executed-during-the-lifecycle-tp946348p946348.html
Sent from the Maven - Users mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
