You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sn...@apache.org on 2005/10/14 18:32:49 UTC

svn commit: r321145 - /maven/components/trunk/maven-plugins/maven-war-plugin/src/site/apt/howto.apt

Author: snicoll
Date: Fri Oct 14 09:32:43 2005
New Revision: 321145

URL: http://svn.apache.org/viewcvs?rev=321145&view=rev
Log:
Updated documentation according to new Mojos. (exploded / inplace).

Modified:
    maven/components/trunk/maven-plugins/maven-war-plugin/src/site/apt/howto.apt

Modified: maven/components/trunk/maven-plugins/maven-war-plugin/src/site/apt/howto.apt
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-plugins/maven-war-plugin/src/site/apt/howto.apt?rev=321145&r1=321144&r2=321145&view=diff
==============================================================================
--- maven/components/trunk/maven-plugins/maven-war-plugin/src/site/apt/howto.apt (original)
+++ maven/components/trunk/maven-plugins/maven-war-plugin/src/site/apt/howto.apt Fri Oct 14 09:32:43 2005
@@ -4,7 +4,7 @@
  Stephane Nicoll
  <sn...@apache.org>
  ------
- September 23, 2005
+ October 14, 2005
 
 Introduction
 
@@ -14,22 +14,12 @@
 
    * inplace: package the web application in the source tree
 
-   * exploded (<<deprecated>>): package an exploded web application
+   * exploded : package an exploded web application
 
-  The packaging's mode is to be set in the plugin's configuration. For instance,
-  to use the <inplace> mode configure your project as follows:
+  Each mode is materialized by a goal. For instance, to generate an exploded
+  web application from the current project, one would type
 
 +--------
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-war-plugin</artifactId>
-        <configuration>
-           <mode>inplace</mode>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
+  m2 war:exploded
 +---------