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/20 12:54:17 UTC

svn commit: r125760 - /maven/maven-1/plugins/trunk/gump/xdocs/changes.xml /maven/maven-1/plugins/trunk/gump/xdocs/index.xml

Author: brett
Date: Thu Jan 20 03:54:15 2005
New Revision: 125760

URL: http://svn.apache.org/viewcvs?view=rev&rev=125760
Log:
doco for runtime attribute

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

Modified: maven/maven-1/plugins/trunk/gump/xdocs/changes.xml
Url: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/gump/xdocs/changes.xml?view=diff&rev=125760&p1=maven/maven-1/plugins/trunk/gump/xdocs/changes.xml&r1=125759&p2=maven/maven-1/plugins/trunk/gump/xdocs/changes.xml&r2=125760
==============================================================================
--- maven/maven-1/plugins/trunk/gump/xdocs/changes.xml	(original)
+++ maven/maven-1/plugins/trunk/gump/xdocs/changes.xml	Thu Jan 20 03:54:15 2005
@@ -25,6 +25,9 @@
   </properties>
   <body>
     <release version="2.0.1-SNAPSHOT" date="in SVN">
+      <action dev="brett" type="add">Add the ability to specify the "runtime" attribute of a dependency using the
+        <code>gump.runtime</code> property</action>
+      <action dev="brett" type="update">Pass ids to depends element also</action>
       <action dev="brett" type="update">Change nag to use ${pom.name} instead of ${pom.artifactId}</action>
       <action dev="brett" type="add">Add ASL 2.0 to the generated descriptor</action>
     </release>

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=125760&p1=maven/maven-1/plugins/trunk/gump/xdocs/index.xml&r1=125759&p2=maven/maven-1/plugins/trunk/gump/xdocs/index.xml&r2=125760
==============================================================================
--- maven/maven-1/plugins/trunk/gump/xdocs/index.xml	(original)
+++ maven/maven-1/plugins/trunk/gump/xdocs/index.xml	Thu Jan 20 03:54:15 2005
@@ -86,6 +86,19 @@
     <gump.id>axis</gump.id>
   </properties>
  </dependency>]]></source>
+        <p>
+          Gump requires that you specify any dependency that is required at runtime. This is usually only
+          required if another project is depending on your project, and not declaring the dependency itself.
+          To enable runtime inheritence for a dependency, add the <code>gump.runtime</code> property:
+        </p>
+        <source><![CDATA[<dependency>
+  <groupId>commons-lang</groupId>
+  <artifactId>commons-lang</groupId>
+  <version>2.0</version>
+  <properties>
+    <gump.runtime>true</gump.runtime>
+  </properties>
+ </dependency>]]></source>
       </subsection>
     </section>
  </body>

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