It does not work for me too.

Even if I use this configuration
     <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-war-plugin</artifactId>
       <version>2.0.2-SNAPSHOT</version>
        <goals>
             <goal>exploded</goal>
        </goals>
     </plugin>

or

     <plugin>
       <groupId>org.apache.maven.plugins</groupId>
       <artifactId>maven-war-plugin</artifactId>
       <version>2.0.2-SNAPSHOT</version>
       <executions>
         <execution>
           <goals>
               <goal>exploded</goal>
           </goals>
         </execution>
       </executions>
     </plugin>

mvn package
[INFO] [war:war]
[INFO] Exploding webapp...

Rémy

Also The FAQ URL in the maven-war-plugin site is corrupted :
http://maven.apache.org/plugins/maven-war-plugin/faq.html => Page Not Found

Reply via email to