<?xml version="1.0" encoding="UTF-8"?>
<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>org.apache.tapestry</groupId>
  <artifactId>tapestry-test</artifactId>
  <version>5.0.3</version>
  <name>Tapestry Test Utilities</name>
  <inceptionYear>2007</inceptionYear>
  <description>Test utilities needed by Tapestry</description>
  <parent>
    <groupId>org.apache.tapestry</groupId>
    <artifactId>tapestry-project</artifactId>
    <version>5.0.3</version>
    <relativePath>../tapestry-project/pom.xml</relativePath>
  </parent>
  <!-- Due to Maven 2 bugs, this has to be copied into each module POM. -->
  <url>http://tapestry.apache.org/tapestry5/${pom.artifactId}/</url>
  <scm>
    <connection>scm:svn:https://svn.apache.org/repos/asf/tapestry/tapestry5/${pom.artifactId}/trunk/</connection>
    <url>http://svn.apache.org/viewvc/tapestry/tapestry5/${pom.artifactId}/trunk/</url>
  </scm>
  <dependencies>
  <dependency>
    <groupId>org.openqa.selenium.client-drivers</groupId>
    <artifactId>selenium-java-client-driver</artifactId>
    <version>0.8.1</version>
    <scope>compile</scope>
  </dependency>
  <dependency>
    <groupId>org.openqa.selenium.server</groupId>
    <artifactId>selenium-server</artifactId>
    <version>0.8.1</version>
    <scope>compile</scope>
  </dependency>
    <dependency>
      <groupId>org.testng</groupId>
      <artifactId>testng</artifactId>
      <version>5.1</version>
      <classifier>jdk15</classifier>
      <scope>compile</scope>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-assembly-plugin</artifactId>
      </plugin>
    </plugins>
  </build>
  <reporting>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <configuration>
          <!--
            <tags>
            <tag>
            <name>todo</name>
            <!- - Should be a combinaition of the letters Xaoptcmf - ->
            <placement>a</placement>
            <head>To do something:</head>
            </tag>
            </tags> -->
          <linksource>true</linksource>
          <links>
            <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
            <link>http://jakarta.apache.org/commons/logging/apidocs/</link>
          </links>
          <stylesheetfile>${basedir}/src/site/resources/css/jdstyle.css</stylesheetfile>
        </configuration>
      </plugin>
    </plugins>
  </reporting>
</project>