Re: Changing WAR default goal

2006-11-22 Thread coutant
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- View this message in context: http://www.nabble.com/Changing-WAR-default-goal-tf585539s177.html#a7487949 Sent from the Maven - Users mailing list

Re: Changing WAR default goal

2006-11-22 Thread Rémy Sanlaville
It does not work for me too. Even if I use this configuration plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-war-plugin/artifactId version2.0.2-SNAPSHOT/version goals goalexploded/goal /goals /plugin or plugin

Changing WAR default goal

2005-11-20 Thread Frank Mena
How do I change the default goal of a war so that it produces an exploded war instead of .war file when I run the package goal? Frank

Re: Changing WAR default goal

2005-11-20 Thread Edwin Punzalan
Hi. The war:war goal is executed for all projects with packaging=war. I think overriding this default value is not supported yet. However, doing mvn test war:exploded would be a work-around as package is done after tests have passed. Frank Mena wrote: How do I change the default goal

Re: Changing WAR default goal

2005-11-20 Thread John Tolentino
mvn war:exploded Please see http://maven.apache.org/plugins/maven-war-plugin/ Other relevant info about plugins: http://maven.apache.org/plugins/index.html Regards, John Frank Mena wrote: How do I change the default goal of a war so that it produces an exploded war instead of .war file

Re: Changing WAR default goal

2005-11-20 Thread Frank Mena
Thanks. I was looking to stop the war:war from executing, as it takes time. Frank On 11/20/05, Edwin Punzalan [EMAIL PROTECTED] wrote: Hi. The war:war goal is executed for all projects with packaging=war. I think overriding this default value is not supported yet. However, doing mvn test