In pom.xml, I found a paragraph as follows:
<plugin>
<groupId>org.appfuse</groupId>
<artifactId>maven-warpath-plugin</artifactId>
<version>1.0-m4</version>
<extensions>true</extensions>
<executions>
<execution>
<goals>
<goal>add-classes</goal>
</goals>
</execution>
</executions>
<configuration>
<warpathExcludes>
applicationContext-resources.xml,ApplicationResources*.properties,ehcache.xm
l,
hibernate.cfg.xml,jdbc.properties,log4j.xml,mail.properties,persistence.xml
</warpathExcludes>
</configuration>
</plugin>
And I found the goal "warpath:add-classes" always executed very early.
I know that a goal should be bound to a phase in the lifecycle, but where to
define the bound ?
Why does goal warpath:add-classes always execute so early ?
Thanks for your advice !!
Chino
2007-5-10