From b4c955faf311150ebc49db64a08884e450beeb05 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 14 Oct 2005 16:32:43 +0000 Subject: [PATCH] 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 --- .../maven-war-plugin/src/site/apt/howto.apt | 20 +++++-------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/maven-plugins/maven-war-plugin/src/site/apt/howto.apt b/maven-plugins/maven-war-plugin/src/site/apt/howto.apt index f1c75de2d3..e26d9cde6a 100644 --- a/maven-plugins/maven-war-plugin/src/site/apt/howto.apt +++ b/maven-plugins/maven-war-plugin/src/site/apt/howto.apt @@ -4,7 +4,7 @@ Stephane Nicoll ------ - September 23, 2005 + October 14, 2005 Introduction @@ -14,22 +14,12 @@ Introduction * inplace: package the web application in the source tree - * exploded (<>): 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 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 +-------- - - - - org.apache.maven.plugins - maven-war-plugin - - inplace - - - - + m2 war:exploded +---------