[jboss-cvs] repository.jboss.com/maven2/org/apache/maven/surefire/surefire/2.0 ...
Scott Stark
scott.stark at jboss.com
Sun Dec 10 12:02:56 EST 2006
User: starksm
Date: 06/12/10 12:02:56
Added: maven2/org/apache/maven/surefire/surefire/2.0
surefire-2.0.pom surefire-2.0.pom.sha1
Log:
Add the maven plugins
Revision Changes Path
1.1 date: 2006/12/10 17:02:56; author: starksm; state: Exp;repository.jboss.com/maven2/org/apache/maven/surefire/surefire/2.0/surefire-2.0.pom
Index: surefire-2.0.pom
===================================================================
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>maven-parent</artifactId>
<groupId>org.apache.maven</groupId>
<version>1</version>
<relativePath>../pom/maven/pom.xml</relativePath>
</parent>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire</artifactId>
<packaging>pom</packaging>
<name>SureFire</name>
<version>2.0</version>
<description>Surefire is a test framework project.</description>
<url>http://maven.apache.org/surefire</url>
<issueManagement>
<system>jira</system>
<url>http://jira.codehaus.org/browse/SUREFIRE</url>
</issueManagement>
<inceptionYear>2004</inceptionYear>
<mailingLists>
<mailingList>
<name>Surefire User List</name>
<subscribe>surefire-users-subscribe at maven.apache.org</subscribe>
<unsubscribe>surefire-users-unsubscribe at maven.apache.org</unsubscribe>
<archive>http://mail-archives.apache.org/mod_mbox/maven-surefire-users/</archive>
</mailingList>
<mailingList>
<name>Surefire Developer List</name>
<subscribe>surefire-dev-subscribe at maven.apache.org</subscribe>
<unsubscribe>surfire-dev-unsubscribe at maven.apache.org</unsubscribe>
<archive>http://mail-archives.apache.org/mod_mbox/maven-surefire-dev/</archive>
</mailingList>
<mailingList>
<name>Surefire Commits List</name>
<subscribe>surefire-commits-subscribe at maven.apache.org</subscribe>
<unsubscribe>surefire-commits-unsubscribe at maven.apache.org</unsubscribe>
<archive>http://mail-archives.apache.org/mod_mbox/maven-surefire-commits/</archive>
</mailingList>
</mailingLists>
<contributors>
<contributor>
<name>Jesse Kuhnert</name>
</contributor>
<contributor>
<name>Vincent Siveton</name>
<email>vincent.siveton at gmail.com</email>
<organization>ASF</organization>
<roles>
<role>Java Developer</role>
</roles>
</contributor>
</contributors>
<scm>
<connection>scm:svn:https://svn.apache.org/repos/asf/maven/surefire/tags/surefire-2.0</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/surefire/tags/surefire-2.0</developerConnection>
<url>https://svn.apache.org/repos/asf/maven/surefire/tags/surefire-2.0</url>
</scm>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.3</source>
<target>1.3</target>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<tagBase>https://svn.apache.org/repos/asf/maven/surefire/tags</tagBase>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<modules>
<module>surefire-api</module>
<module>surefire-booter</module>
<module>surefire-providers</module>
</modules>
<profiles>
<!-- use preinstalled JDK 1.3 to build and test -->
<profile>
<id>jdk1.3</id>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<fork>true</fork>
<compilerVersion>1.3</compilerVersion>
<executable>${JAVA_1_3_HOME}/bin/javac</executable>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkMode>once</forkMode>
<jvm>${JAVA_1_3_HOME}/bin/java</jvm>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
1.1 date: 2006/12/10 17:02:56; author: starksm; state: Exp;repository.jboss.com/maven2/org/apache/maven/surefire/surefire/2.0/surefire-2.0.pom.sha1
Index: surefire-2.0.pom.sha1
===================================================================
aaaec28e535c69625b176821b427a35343308b13
More information about the jboss-cvs-commits
mailing list