Updated documentation according to new Mojos. (exploded / inplace).

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@321145 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephane Nicoll 2005-10-14 16:32:43 +00:00
parent 6b333b6201
commit b4c955faf3
1 changed files with 5 additions and 15 deletions

View File

@ -4,7 +4,7 @@
Stephane Nicoll Stephane Nicoll
<snicoll@apache.org> <snicoll@apache.org>
------ ------
September 23, 2005 October 14, 2005
Introduction Introduction
@ -14,22 +14,12 @@ Introduction
* inplace: package the web application in the source tree * 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, Each mode is materialized by a goal. For instance, to generate an exploded
to use the <inplace> mode configure your project as follows: web application from the current project, one would type
+-------- +--------
<build> m2 war:exploded
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<mode>inplace</mode>
</configuration>
</plugin>
</plugins>
</build>
+--------- +---------