HI, Sometimes I want to override default execution goals, for example: war:war goal. So what I do is simply add to the maven-war-plugin this:
<execution>
<id>default-war</id>
<phase>none</phase>
</execution>
The question is where is default-war define in maven (same goes for
default-jar,default-install etc...).
Thanks!
