Author: mperham Date: Thu Jan 12 17:38:09 2006 New Revision: 368544 URL: http://svn.apache.org/viewcvs?rev=368544&view=rev Log: PR: MASSEMBLY-57 Add XSD to Modello generation, documentation edits
Modified: maven/plugins/trunk/maven-assembly-plugin/pom.xml maven/plugins/trunk/maven-assembly-plugin/src/site/apt/howto.apt maven/plugins/trunk/maven-assembly-plugin/src/site/apt/introduction.apt Modified: maven/plugins/trunk/maven-assembly-plugin/pom.xml URL: http://svn.apache.org/viewcvs/maven/plugins/trunk/maven-assembly-plugin/pom.xml?rev=368544&r1=368543&r2=368544&view=diff ============================================================================== --- maven/plugins/trunk/maven-assembly-plugin/pom.xml (original) +++ maven/plugins/trunk/maven-assembly-plugin/pom.xml Thu Jan 12 17:38:09 2006 @@ -32,6 +32,7 @@ <goal>xpp3-reader</goal> <goal>xpp3-writer</goal> <goal>java</goal> + <goal>xsd</goal> </goals> </execution> </executions> Modified: maven/plugins/trunk/maven-assembly-plugin/src/site/apt/howto.apt URL: http://svn.apache.org/viewcvs/maven/plugins/trunk/maven-assembly-plugin/src/site/apt/howto.apt?rev=368544&r1=368543&r2=368544&view=diff ============================================================================== --- maven/plugins/trunk/maven-assembly-plugin/src/site/apt/howto.apt (original) +++ maven/plugins/trunk/maven-assembly-plugin/src/site/apt/howto.apt Thu Jan 12 17:38:09 2006 @@ -8,7 +8,7 @@ How to Use - These is a brief example on how to use the assembly:assembly goal and assembly:unpack goal. + These are brief examples of how to use the assembly:assembly and assembly:unpack goals. To use the assembly:assembly goal, you must define the descriptor file that you are going to use or define the descriptorId from the predefined {{{descriptor.html}descriptor ids}}. @@ -17,7 +17,7 @@ * How To use assembly:assembly using a customized descriptor file. ----- - m2 assembly:assembly -Ddescriptor=path/to/descriptor.xml + mvn assembly:assembly -Ddescriptor=path/to/descriptor.xml ----- @@ -25,17 +25,17 @@ ---- - m2 assembly:assembly -DdescriptorId=bin + mvn assembly:assembly -DdescriptorId=bin - or m2 assembly:assembly -DdescriptorId=jar-with-dependencies + or mvn assembly:assembly -DdescriptorId=jar-with-dependencies - or m2 assembly:assembly -DdescriptorId=src + or mvn assembly:assembly -DdescriptorId=src ----- -* How to configure assembly:assembly plugin in pom.xml +* How to configure the assembly:assembly plugin in your POM - You can also configure this plugin inside your pom.xml. To run use "m2 assembly:assembly". + You can also configure this plugin inside your pom.xml. To run use "mvn assembly:assembly". ------------------- <project> @@ -62,10 +62,11 @@ * How to use assembly:unpack - After running this goal, all dependencies will be extracted at the specified "\<workDirectory\>". + After running this goal, all dependencies will be extracted into the location specified in the + \<workDirectory\> element. ----- - m2 assembly:unpack + mvn assembly:unpack ----- - For full documentation of plugin's goals and parameters, click {{{index.html}here}}. + For full documentation of plugin's goals and parameters, click {{{index.html}here}}. \ No newline at end of file Modified: maven/plugins/trunk/maven-assembly-plugin/src/site/apt/introduction.apt URL: http://svn.apache.org/viewcvs/maven/plugins/trunk/maven-assembly-plugin/src/site/apt/introduction.apt?rev=368544&r1=368543&r2=368544&view=diff ============================================================================== --- maven/plugins/trunk/maven-assembly-plugin/src/site/apt/introduction.apt (original) +++ maven/plugins/trunk/maven-assembly-plugin/src/site/apt/introduction.apt Thu Jan 12 17:38:09 2006 @@ -10,11 +10,11 @@ This plugin is the Maven2 version of Maven1's Distribution Plugin. - This plugin provides the capability to create a binary distribution and source distribution. - Currently it can create distribution format such as: zip format, tar.bz, tar.gz2, jar format. + This plugin provides the capability to create binary and source distributions. + Currently it can create distribution formats such as: zip, tar.bz, tar.gz2, and jar. The goal to do this is "assembly:assembly". - It also provides the capability to extract all project dependencies on certain working directory. + It also provides the capability to extract all project dependencies into a given working directory. The goal to do this is "assembly:unpack". To learn how to use the plugin, click {{{howto.html}here}}.