Added documentation for the cactus.bundle property. This fixes MAVEN-901

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@114160 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
vmassol 2003-10-07 19:38:00 +00:00
parent 93f12fd54c
commit a52950afda
3 changed files with 37 additions and 7 deletions

View File

@ -5,7 +5,7 @@
<pomVersion>3</pomVersion>
<id>maven-cactus-plugin</id>
<name>Maven Cactus Plug-in</name>
<currentVersion>3.1</currentVersion>
<currentVersion>3.2-SNAPSHOT</currentVersion>
<description>Plugin for Cactus (http://jakarta.apache.org/cactus) that allows to automatically start containers, run Cactus tests and stop the containers.</description>
<shortDescription>Cactus plugin</shortDescription>
<url>http://maven.apache.org/reference/plugins/cactus/</url>
@ -45,6 +45,11 @@
<name>3.1</name>
<tag>MAVEN_CACTUS_3_1</tag>
</version>
<version>
<id>3.2</id>
<name>3.2</name>
<tag>HEAD</tag>
</version>
</versions>
<developers>
<developer>

View File

@ -7,6 +7,14 @@
<body>
<release version="3.2" date="in CVS">
<action dev="vmassol" type="fix">
Added documentation for <code>cactus.bundle</code> property that
can be used in POM dependency list. This fixes bug
<a href="http://jira.codehaus.org/secure/ViewIssue.jspa?key=MAVEN-901">MAVEN-901</a>
</action>
</release>
<release version="3.1" date="2003-09-15">
<action dev="vmassol" type="add">
New <code>cactus:jar-install</code> goal to install the Cactus

View File

@ -8,12 +8,29 @@
<body>
<section name="Cactus Plug-in Features">
<ul>
<li>
Uses the <a href="http://jakarta.apache.org/cactus">Cactus/Ant
Integration</a> module. Thus benefits from all its features.
</li>
</ul>
<p>
The Cactus plugin for Maven uses the
<a href="http://jakarta.apache.org/cactus">Cactus/Ant
integration</a> module. Thus benefits from all its features.
</p>
<p>
Some jars are used only for testing (for example, DbUnit). These
jars can be entered as dependencies in the <code>project.xml</code>
and tagged with <code>cactus.bundle</code>. When the Cactus plugin
finds such jars it will automatically add them to the deployed war.
For example:
</p>
<source><![CDATA[
<dependency>
<groupId>dbunit</groupId>>
<artifactId>dbunit</artifactId>>
<version>1.5.5</version>
<properties>
<cactus.bundle>true</cactus.bundle>
</properties>
</dependency>
]]></source>
</section>
</body>
</document>