<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>
  <groupId>junitour</groupId>
  <artifactId>junitour</artifactId>
  <packaging>jar</packaging>
  <version>1.4-SNAPSHOT</version>
  <name>junitour</name>

  <scm>
    <connection>
      scm:svn:https://junitour.svn.sourceforge.net/svnroot/junitour//trunk
    </connection>
    <developerConnection>
      scm:svn:https://junitour.svn.sourceforge.net/svnroot/junitour/trunk
    </developerConnection>
    <url>http://junitour.svn.sourceforge.net/viewvc/junitour/trunk</url>
  </scm>

  <url>http://junitour.sourceforge.net/junitour/</url>

  <issueManagement>
    <url>http://sourceforge.net/tracker/?group_id=86438</url>
  </issueManagement>

  <ciManagement>
    <system>hudson</system>
    <url>hudson.dev.java.dev</url>
  </ciManagement>

  <prerequisites>
    <maven>2.0.4</maven>
  </prerequisites>

  <distributionManagement>
    <!--
      <repository>
      <id>sourceforge</id>
      <name>SourceForge Maven Repository</name>
      <url>scp://xzy/chroot/home/groups/maven/htdocs/maven2</url>
      </repository>
      <snapshotRepository>
      <id>sourceforge-snapshot</id>
      <name>SourceForge Maven Snapshot Repository</name>
      <url>scp://xzyhome/groups/maven/htdocs/maven2-snapshot</url>
      <uniqueVersion>false</uniqueVersion>
      </snapshotRepository>
    -->
    <site>
      <id>junitour.website</id>
      <url>file:////tmp/site</url>
    </site>

  </distributionManagement>

  <inceptionYear>2005</inceptionYear>

  <!-- any mailing lists for the project -->
  <mailingLists>
    <mailingList>
      <name>users mailing list</name>
      <subscribe>
        http://lists.sourceforge.net/mailman/listinfo/junitour-users
      </subscribe>
      <post>junitour-users@lists.sourceforge.net</post>
      <unsubscribe>
        http://lists.sourceforge.net/mailman/listinfo/junitour-users
      </unsubscribe>
      <!--      <archive>http://lists.sourceforge.net/mailman/listinfo/junitour-users</archive>-->
    </mailingList>

    <mailingList>
      <name>open forum</name>
      <!--      <subscribe>http://sourceforge.net/forum/forum.php?forum_id=295994</subscribe>-->
      <!--      <unsubscribe>http://sourceforge.net/forum/forum.php?forum_id=295994</unsubscribe>-->
      <archive>http://sourceforge.net/forum/forum.php?forum_id=295994</archive>
    </mailingList>
    <mailingList>
      <name>help forum</name>
      <!--      <subscribe>http://sourceforge.net/forum/forum.php?forum_id=295995</subscribe>-->
      <!--      <unsubscribe>http://sourceforge.net/forum/forum.php?forum_id=295995</unsubscribe>-->
      <archive>http://sourceforge.net/forum/forum.php?forum_id=295995</archive>
    </mailingList>
    <mailingList>
      <name>Developers forum</name>
      <!--      <subscribe>http://sourceforge.net/forum/forum.php?forum_id=295995</subscribe>-->
      <!--      <unsubscribe>http://sourceforge.net/forum/forum.php?forum_id=295995</unsubscribe>-->
      <archive>http://sourceforge.net/forum/forum.php?forum_id=295996</archive>
    </mailingList>
  </mailingLists>

  <!-- who the developers are for the project -->
  <developers>
    <developer>
      <name>Robert Hostlowsky</name>
      <id>hostlows</id>
      <email>hostlows (At) users sourceforge net</email>
      <organization>Robert Hostlowsky, Munich, Germany</organization>
      <roles>
        <role>Project Administrator</role>
        <role>Java Developer</role>
        <role>Release Manager</role>
      </roles>
      <timezone>+1</timezone>
    </developer>
  </developers>

  <licenses>
    <license>
      <name>Apache License V2.0</name>
      <url>http://apache.org/licenses/LICENSE-2.0</url>
    </license>
  </licenses>

  <properties>
    <surefire.fork.mode>once</surefire.fork.mode>
    <surefire.format>brief</surefire.format>
    <surefire.usefile>false</surefire.usefile>
    <compile.forked>false</compile.forked>
    <compile.flags>-Xlint:unchecked,deprecation,fallthrough,finally</compile.flags>
    <java.source.version>1.5</java.source.version>


    <!--Versions for various plugins and features -->
    <!-- only needed, if problems
      <antrun.version>1.1</antrun.version>
      <assembly.version>2.1</assembly.version>
      <cobertura.version>2.0</cobertura.version>
      <compiler.version>2.0.1</compiler.version>
      <jar.version>2.0</jar.version>
      <javadoc.version>2.0</javadoc.version>
      <jxr.version>2.0</jxr.version>
      <mprojectinfo.version>2.0</mprojectinfo.version>
      <resources.version>2.2</resources.version>
      <site.version>2.0-beta-5</site.version>
      <surefire-report.version>2.0</surefire-report.version>
      <surefire.version>2.1.3</surefire.version>
    -->
  </properties>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
    </dependency>

    <dependency>
      <groupId>ant</groupId>
      <artifactId>ant</artifactId>
      <version>1.5.3-1</version>
    </dependency>

    <dependency>
      <groupId>ant</groupId>
      <artifactId>ant-optional</artifactId>
      <version>1.5.3-1</version>
    </dependency>

  </dependencies>

  <build>
    <sourceDirectory>src/java/main</sourceDirectory>
    <testSourceDirectory>src/java/test</testSourceDirectory>
    <plugins>

      <!--      <plugin>-->
      <!--        <groupId>org.codehaus.mojo</groupId>-->
      <!--        <artifactId>cobertura-maven-plugin</artifactId>-->
      <!--      </plugin>-->

      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.3</version>
        <configuration>

          <skip>false</skip>

          <testFailureIgnore>true</testFailureIgnore>
          <includes>
            <include>**/*Test.java</include>
            <include>**/*TestCase.java</include>
          </includes>

          <reportFormat>${surefire.format}</reportFormat>
          <useFile>${surefire.usefile}</useFile>
          <forkMode>${surefire.fork.mode}</forkMode>
          <argLine>-ea</argLine>
        </configuration>
      </plugin>

      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
          <showDeprecation>true</showDeprecation>
          <fork>${compile.forked}</fork>
          <compilerArgument>${compile.flags}</compilerArgument>
        </configuration>
      </plugin>
    </plugins>
    <defaultGoal>install</defaultGoal>
  </build>

  <reporting>
    <plugins>
      <plugin>
        <artifactId>maven-site-plugin</artifactId>
        <configuration>
          <xdocDirectory>src/site</xdocDirectory>
          <siteDirectory>src/site</siteDirectory>
          <generateReports>true</generateReports>
        </configuration>
      </plugin>

      <plugin>
        <artifactId>maven-surefire-report-plugin</artifactId>
      </plugin>
      <plugin>
        <artifactId>maven-surefire-report-plugin</artifactId>
      </plugin>
      <plugin>
        <artifactId>maven-changelog-plugin</artifactId>
      </plugin>
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
      </plugin>
      <plugin>
        <artifactId>maven-jxr-plugin</artifactId>
        <configuration>
          <linkJavadoc>true</linkJavadoc>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-pmd-plugin</artifactId>
      </plugin>
    </plugins>
  </reporting>


</project>
