Preparing for 3.2 release
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@114232 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9100b172d0
commit
a571a1e648
22
cactus/announcements/3.2.ann
Normal file
22
cactus/announcements/3.2.ann
Normal file
@ -0,0 +1,22 @@
|
||||
The Maven team is pleased to announce the Cactus plugin 3.2 release!
|
||||
|
||||
http://maven.apache.org/reference/plugins/cactus
|
||||
|
||||
The Maven Cactus plugin is a plugin for Cactus
|
||||
(http://jakarta.apache.org/cactus) that allows to automatically start
|
||||
containers, run Cactus tests and stop the containers.
|
||||
|
||||
User-visible changes in this version:
|
||||
|
||||
o Added documentation for cactus.bundle property that can be used in POM
|
||||
dependency list. This fixes bug MAVEN-901.
|
||||
o Updated to use Cactus 1.5-rc1, HttpClient 2.0 rc2 and AspectJ 1.1.1.
|
||||
|
||||
Note that this plugin has been tested with Maven 1.0 rc1.
|
||||
Using it with another version of Maven is at your own risks! :-)
|
||||
|
||||
You can download the Cactus Maven plugin here:
|
||||
http://www.ibiblio.org/maven/maven/jars/maven-cactus-plugin-3.2.jar
|
||||
|
||||
Have fun!
|
||||
-Vincent
|
||||
@ -5,7 +5,7 @@
|
||||
<pomVersion>3</pomVersion>
|
||||
<id>maven-cactus-plugin</id>
|
||||
<name>Maven Cactus Plug-in</name>
|
||||
<currentVersion>3.2-SNAPSHOT</currentVersion>
|
||||
<currentVersion>3.2</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>
|
||||
@ -48,7 +48,7 @@
|
||||
<version>
|
||||
<id>3.2</id>
|
||||
<name>3.2</name>
|
||||
<tag>HEAD</tag>
|
||||
<tag>MAVEN_CACTUS_3_2</tag>
|
||||
</version>
|
||||
</versions>
|
||||
<developers>
|
||||
@ -78,17 +78,17 @@
|
||||
<dependency>
|
||||
<groupId>cactus</groupId>
|
||||
<artifactId>cactus</artifactId>
|
||||
<version>13-1.6dev-20030829</version>
|
||||
<version>13-1.5-rc1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cactus</groupId>
|
||||
<artifactId>cactus-ant</artifactId>
|
||||
<version>13-1.6dev-20030829</version>
|
||||
<version>13-1.5-rc1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-httpclient</groupId>
|
||||
<artifactId>commons-httpclient</artifactId>
|
||||
<version>2.0-rc1</version>
|
||||
<version>2.0-rc2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-logging</groupId>
|
||||
@ -98,16 +98,16 @@
|
||||
<dependency>
|
||||
<groupId>aspectj</groupId>
|
||||
<artifactId>aspectjrt</artifactId>
|
||||
<version>1.0.6</version>
|
||||
<version>1.1.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.1</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Note: Dependencies below are needed by HttpUnit. Xerces is also
|
||||
needed by the XML report used by the junitreport Ant task -->
|
||||
|
||||
<dependency>
|
||||
<groupId>httpunit</groupId>
|
||||
<artifactId>httpunit</artifactId>
|
||||
|
||||
@ -13,6 +13,9 @@
|
||||
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>
|
||||
<action dev="vmassol" type="update">
|
||||
Updated to use Cactus 1.5-rc1, HttpClient 2.0 rc2 and AspectJ 1.1.1.
|
||||
</action>
|
||||
</release>
|
||||
|
||||
<release version="3.1" date="2003-09-15">
|
||||
|
||||
@ -24,6 +24,13 @@
|
||||
<th>Date</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>26 Oct 2003</td>
|
||||
<td>
|
||||
Release of version 3.2. Read the
|
||||
<a href="http://cvs.apache.org/viewcvs.cgi/maven/src/plugins-build/cactus/announcements/3.2.ann?rev=1.1&content-type=text/vnd.viewcvs-markup">announcement</a>.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>15 Sep 2003</td>
|
||||
<td>
|
||||
|
||||
@ -15,6 +15,7 @@
|
||||
<item name="Properties" href="/properties.html"/>
|
||||
</menu>
|
||||
<menu name="Downloads">
|
||||
<item name="Cactus Plugin 3.2" href="http://www.ibiblio.org/maven/maven/plugins/maven-cactus-plugin-3.2.jar"/>
|
||||
<item name="Cactus Plugin 3.1" href="http://www.ibiblio.org/maven/maven/plugins/maven-cactus-plugin-3.1.jar"/>
|
||||
<item name="Cactus Plugin 3.0" href="http://www.ibiblio.org/maven/maven/plugins/maven-cactus-plugin-3.0.jar"/>
|
||||
<item name="Cactus Plugin 2.0" href="http://www.ibiblio.org/maven/maven/plugins/maven-cactus-plugin-2.0.jar"/>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user