o Bumping all plugin version to release status o Validated all plugins to make sure all snapshots were removed. I had to manually insert the versions for: 1) ashkelon 2) commons-dbcp Not sure how either of these got up there without the timestamp mapping. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113303 13f79535-47bb-0310-9956-ffa450edef68
132 lines
3.7 KiB
XML
132 lines
3.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project>
|
|
<extend>${basedir}/../project.xml</extend>
|
|
<pomVersion>3</pomVersion>
|
|
<id>maven-cactus-plugin</id>
|
|
<name>Maven Cactus Plug-in</name>
|
|
<currentVersion>2.0</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>
|
|
<siteDirectory>/www/maven.apache.org/reference/plugins/cactus/</siteDirectory>
|
|
<repository>
|
|
<connection>scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:maven/src/plugins-build/cactus/</connection>
|
|
<url>http://cvs.apache.org/viewcvs/maven/src/plugins-build/cactus/</url>
|
|
</repository>
|
|
<versions>
|
|
<version>
|
|
<id>1.0</id>
|
|
<name>1.0</name>
|
|
<tag>MAVEN_CACTUS_1_0</tag>
|
|
</version>
|
|
<version>
|
|
<id>1.1</id>
|
|
<name>1.1</name>
|
|
<tag>MAVEN_CACTUS_1_1</tag>
|
|
</version>
|
|
<version>
|
|
<id>1.2</id>
|
|
<name>1.2</name>
|
|
<tag>MAVEN_CACTUS_1_2</tag>
|
|
</version>
|
|
<version>
|
|
<id>2.0</id>
|
|
<name>2.0</name>
|
|
<tag>MAVEN_CACTUS_2_0</tag>
|
|
</version>
|
|
</versions>
|
|
<developers>
|
|
<developer>
|
|
<name>Vincent Massol</name>
|
|
<id>vmassol</id>
|
|
<email>vmassol@pivolis.com</email>
|
|
<organization>Pivolis</organization>
|
|
<roles>
|
|
<role>Java Developer</role>
|
|
<role>Architect</role>
|
|
<role>Release Manager</role>
|
|
</roles>
|
|
</developer>
|
|
<developer>
|
|
<name>Eric Pugh</name>
|
|
<id>epugh</id>
|
|
<email>EPugh@upstate.com</email>
|
|
<organization/>
|
|
<roles>
|
|
<role>Java Developer</role>
|
|
</roles>
|
|
</developer>
|
|
</developers>
|
|
<contributors/>
|
|
<dependencies>
|
|
<!-- Build time dependencies -->
|
|
|
|
<dependency>
|
|
<groupId>cactus</groupId>
|
|
<artifactId>jakarta-cactus-integration-ant</artifactId>
|
|
<version>13-1.5dev-20030407</version>
|
|
<type>zip</type>
|
|
</dependency>
|
|
<!-- Runtime dependencies -->
|
|
|
|
<dependency>
|
|
<groupId>cactus</groupId>
|
|
<artifactId>cactus-framework</artifactId>>
|
|
<version>13-1.5dev-20030407</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cactus</groupId>
|
|
<artifactId>cactus-integration-ant</artifactId>>
|
|
<version>1.5dev-20030407</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-httpclient</groupId>
|
|
<artifactId>commons-httpclient</artifactId>>
|
|
<version>2.0-alpha3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>>
|
|
<version>1.0.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>aspectj</groupId>
|
|
<artifactId>aspectjrt</artifactId>
|
|
<version>1.0.6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
<version>1.2.7</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>httpunit</groupId>
|
|
<artifactId>httpunit</artifactId>
|
|
<version>1.5.1</version>
|
|
</dependency>
|
|
<!-- Note: NekoHTML and Xerces are needed by HttpUnit -->
|
|
|
|
<dependency>
|
|
<groupId>nekohtml</groupId>
|
|
<artifactId>nekohtml</artifactId>
|
|
<version>0.7.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>xerces</groupId>
|
|
<artifactId>xercesImpl</artifactId>
|
|
<version>2.3.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>xerces</groupId>
|
|
<artifactId>xmlParserAPIs</artifactId>
|
|
<version>2.2.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|