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 +---------