You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by vm...@apache.org on 2003/10/07 21:38:00 UTC

cvs commit: maven/src/plugins-build/cactus/xdocs features.xml changes.xml

vmassol     2003/10/07 12:38:00

  Modified:    src/plugins-build/cactus project.xml
               src/plugins-build/cactus/xdocs features.xml changes.xml
  Log:
  Added documentation for the cactus.bundle property. This fixes MAVEN-901
  
  Revision  Changes    Path
  1.44      +6 -1      maven/src/plugins-build/cactus/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/maven/src/plugins-build/cactus/project.xml,v
  retrieving revision 1.43
  retrieving revision 1.44
  diff -u -r1.43 -r1.44
  --- project.xml	29 Sep 2003 05:19:11 -0000	1.43
  +++ project.xml	7 Oct 2003 19:37:59 -0000	1.44
  @@ -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>
  @@ -44,6 +44,11 @@
         <id>3.1</id>
         <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>
  
  
  
  1.4       +23 -6     maven/src/plugins-build/cactus/xdocs/features.xml
  
  Index: features.xml
  ===================================================================
  RCS file: /home/cvs/maven/src/plugins-build/cactus/xdocs/features.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- features.xml	8 Apr 2003 21:40:20 -0000	1.3
  +++ features.xml	7 Oct 2003 19:38:00 -0000	1.4
  @@ -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>
  
  
  
  1.30      +8 -0      maven/src/plugins-build/cactus/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven/src/plugins-build/cactus/xdocs/changes.xml,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- changes.xml	15 Sep 2003 20:04:07 -0000	1.29
  +++ changes.xml	7 Oct 2003 19:38:00 -0000	1.30
  @@ -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
  
  
  

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