doco for runtime attribute

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@125760 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
brett 2005-01-20 11:54:15 +00:00
parent 1c51f44341
commit 172e3d7cbd
2 changed files with 16 additions and 0 deletions

View File

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

View File

@ -85,6 +85,19 @@
<gump.project>ws-axis</gump.project>
<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>