You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by br...@apache.org on 2005/01/08 03:01:31 UTC

svn commit: r124601 - /maven/maven-1/plugins/trunk/gump/xdocs/goals.xml /maven/maven-1/plugins/trunk/gump/xdocs/index.xml /maven/maven-1/plugins/trunk/gump/xdocs/properties.xml

Author: brett
Date: Fri Jan  7 18:01:29 2005
New Revision: 124601

URL: http://svn.apache.org/viewcvs?view=rev&rev=124601
Log:
documentation


Modified:
   maven/maven-1/plugins/trunk/gump/xdocs/goals.xml
   maven/maven-1/plugins/trunk/gump/xdocs/index.xml
   maven/maven-1/plugins/trunk/gump/xdocs/properties.xml

Modified: maven/maven-1/plugins/trunk/gump/xdocs/goals.xml
Url: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/gump/xdocs/goals.xml?view=diff&rev=124601&p1=maven/maven-1/plugins/trunk/gump/xdocs/goals.xml&r1=124600&p2=maven/maven-1/plugins/trunk/gump/xdocs/goals.xml&r2=124601
==============================================================================
--- maven/maven-1/plugins/trunk/gump/xdocs/goals.xml	(original)
+++ maven/maven-1/plugins/trunk/gump/xdocs/goals.xml	Fri Jan  7 18:01:29 2005
@@ -27,26 +27,49 @@
   <body>
     <section name="Goals">
       <table>
-      	<tr><th>Goal</th><th>Description</th></tr>
-      	
-		<a name="gump" />
-      	<tr>
-      	  <td>gump</td>
-      	  <td>
-      	    The default goal. This goal simply executes the 
-      	    <a href="#gump:generate-descriptor">gump:generate-descriptor</a> goal
-      	  </td>
-      	</tr>
-      	
-      	<a name="gump:generate-descriptor" />
-      	<tr>
+        <tr>
+          <th>Goal</th>
+          <th>Description</th>
+        </tr>
+
+        <a name="gump:gump"/>
+        <tr>
+          <td>gump:gump</td>
+          <td>
+      	    Generates a
+            <code>gump.xml</code> file for Apache Gump
+            that is usable directly for the current project.
+          </td>
+        </tr>
+
+        <a name="gump:multiproject"/>
+        <tr>
+          <td>gump:multiproject</td>
+          <td>
+      	    Generates a
+            <code>gump.xml</code> file for Apache Gump
+            that is usable directly, aggregating all of your
+            modules into one file.
+          </td>
+        </tr>
+
+        <a name="gump"/>
+        <tr>
+          <td>gump</td>
+          <td>
+      	    The default goal. This is an alias for
+            <a href="#gump:gump">gump:gump</a>.
+          </td>
+        </tr>
+
+        <a name="gump:generate-descriptor"/>
+        <tr>
           <td>gump:generate-descriptor</td>
           <td>
-            Generates a <code>gump.xml</code> file for Apache Gump
-            that is usable directly.
-            <br />
+      	    This is an alias for
+            <a href="#gump:gump">gump:gump</a>.
           </td>
-      	</tr>
+        </tr>
       </table>
     </section>
   </body>

Modified: maven/maven-1/plugins/trunk/gump/xdocs/index.xml
Url: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/gump/xdocs/index.xml?view=diff&rev=124601&p1=maven/maven-1/plugins/trunk/gump/xdocs/index.xml&r1=124600&p2=maven/maven-1/plugins/trunk/gump/xdocs/index.xml&r2=124601
==============================================================================
--- maven/maven-1/plugins/trunk/gump/xdocs/index.xml	(original)
+++ maven/maven-1/plugins/trunk/gump/xdocs/index.xml	Fri Jan  7 18:01:29 2005
@@ -21,17 +21,72 @@
 
   <properties>
     <title>Maven Gump Plug-in</title>
-    <author email="jason@zenplex.com">Jason van Zyl</author>
+    <author email="brett@apache.org">Brett Porter</author>
   </properties>
 
   <body>
     <section name="Maven Gump Plug-in">
       <p>
         This plug-in generates a descriptor that allows your project to
-        participate in Gump builds. The use for this descriptor will soon be
-        negated by the use of the Maven Reactor but until the Reactor is
-        complete the generation of the Gump descriptor is somewhat useful.
+        participate in Gump builds.
       </p>
+      <subsection name="Using the plugin">
+        <p>
+          Generating the gump descriptor should require few modifications to your project.
+          The most important addition is that of the Gump repository ID to your project file.
+          This tells Gump where to checkout the source code from. For example:
+        </p>
+        <source><![CDATA[<gumpRepositoryId>apache-incubator-svn</gumpRepositoryId>]]></source>
+        <p>
+          If you are building a descriptor for a single Maven project, run:
+        </p>
+        <source>maven gump:gump</source>
+        <p>
+          If you are using a multiproject set up, and would like to aggregate all the projects into
+          a single descriptor, run:
+        </p>
+        <source>maven gump:multiproject</source>
+        <p>
+          If you need to make any customisations to the output, see the "Dependencies and IDs" section that follows,
+          and the <a href="properties.html">Properties Reference</a>.
+          If the plugin does not support generating a structure that you need in the descriptor, please file an
+          enhancement request in <a href="http://jira.codehaus.org/browse/MPGUMP">JIRA</a>.
+        </p>
+      </subsection>
+      <subsection name="Dependencies and IDs">
+        <p>
+          Ideally, the Maven project IDs should match those used by Gump - however this is not
+          always the case. For a list of known mismatches, see
+          <a href="http://wiki.apache.org/gump/MavenId">The Gump Wiki</a>. This page also explains
+          the differences between Gump and Maven IDs.
+        </p>
+        <p>
+          Normally, the plugin will map the artifact ID of a dependency to the project name in Gump. The group ID is not
+          used. To force the plugin to match a certain Gump project, add the <code>&lt;gump.project&gt;</code>
+          dependency property. For example:
+        </p>
+        <source><![CDATA[<dependency>
+  <groupId>velocity</groupId>
+  <artifactId>velocity</groupId>
+  <version>1.4</version>
+  <properties>
+    <gump.project>jakarta-velocity</gump.project>
+  </properties>
+ </dependency>]]></source>
+        <p>
+          If you must also select a particular JAR id from Gump, you can add the <code>&lt;gump.id&gt;</code>
+          dependency property. For example:
+        </p>
+        <source><![CDATA[<dependency>
+  <groupId>axis</groupId>
+  <artifactId>axis</groupId>
+  <version>1.0</version>
+  <properties>
+    <gump.project>ws-axis</gump.project>
+    <gump.id>axis</gump.id>
+  </properties>
+ </dependency>]]></source>
+      </subsection>
     </section>
  </body>
 </document>

Modified: maven/maven-1/plugins/trunk/gump/xdocs/properties.xml
Url: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/gump/xdocs/properties.xml?view=diff&rev=124601&p1=maven/maven-1/plugins/trunk/gump/xdocs/properties.xml&r1=124600&p2=maven/maven-1/plugins/trunk/gump/xdocs/properties.xml&r2=124601
==============================================================================
--- maven/maven-1/plugins/trunk/gump/xdocs/properties.xml	(original)
+++ maven/maven-1/plugins/trunk/gump/xdocs/properties.xml	Fri Jan  7 18:01:29 2005
@@ -62,15 +62,22 @@
           </td>
         </tr>
         <tr>
-          <td>pom.dependencies</td>
+          <td>maven.gump.descriptor</td>
           <td>Yes</td>
           <td>
-			Used to derive a list of projects that are depended on, which
-			is the iterated to provide the <code>depend project</code>
-			value for Gump.
+            The filename of the descriptor to generate. The default is <code>${basedir}/gump.xml</code>.
           </td>
         </tr>
         <tr>
+          <td>maven.gump.module.name</td>
+          <td>Yes</td>
+          <td>
+            Name to use for the <code>&lt;module/&gt;</code> element.
+            The default is the artifact ID of the project.
+          </td>
+        </tr>
+<!--
+        <tr>
           <td>pom.gumpRepositoryId</td>
           <td>Yes</td>
           <td>
@@ -114,6 +121,7 @@
 			Used to generate the <code>url</code> value for Gump
           </td>
         </tr>
+-->
       </table>
     </section>
   </body>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org