<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@maven.apache.org</subscribe>
      <unsubscribe>surefire-users-unsubscribe@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@maven.apache.org</subscribe>
      <unsubscribe>surfire-dev-unsubscribe@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@maven.apache.org</subscribe>
      <unsubscribe>surefire-commits-unsubscribe@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@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>