<?xml version="1.0"?><project>
  <parent>
    <artifactId>selenium</artifactId>
    <groupId>org.openqa.selenium</groupId>
    <version>0.8.1</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.openqa.selenium.client-drivers</groupId>
  <artifactId>selenium-java-client-driver</artifactId>
  <name>Selenium Java Client Driver</name>
  <version>0.8.1</version>
  <url>http://www.openqa.org/selenium</url>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <includes>
            <include>**/ClientDriverSuite.java</include>
          </includes>
          <forkMode>never</forkMode>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-antrun-plugin</artifactId>
        <executions>
          <execution>
            <id>copy-sources</id>
            <phase>generate-sources</phase>
            <goals>
              <goal>run</goal>
            </goals>
            <configuration>
              <tasks>
                <ant antfile="generate-sources.xml">
                  <property location="${project.testClasspathElements}" name="depend.maven.path"></property>
                  <property location="${project.build.directory}" name="output.path"></property>
                  <property location="src/main/java/com/thoughtworks/selenium" name="maven.src.path"></property>
                  <property value="${skip.generation}" name="skip.generation"></property>
                </ant>
              </tasks>
            </configuration>
          </execution>
          <execution>
            <id>clean-sources</id>
            <phase>clean</phase>
            <goals>
              <goal>run</goal>
            </goals>
            <configuration>
              <tasks>
                <ant target="clean-sources" antfile="generate-sources.xml">
                  <property location="src/main/java/com/thoughtworks/selenium" name="maven.src.path"></property>
                </ant>
              </tasks>
            </configuration>
          </execution>
        </executions>
        <dependencies>
          <dependency>
            <groupId>ant</groupId>
            <artifactId>ant-nodeps</artifactId>
            <version>1.6.5</version>
          </dependency>
          <dependency>
            <groupId>ant</groupId>
            <artifactId>ant-trax</artifactId>
            <version>1.6.5</version>
          </dependency>
        </dependencies>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>org.openqa.selenium.server</groupId>
      <artifactId>selenium-server</artifactId>
      <version>0.8.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <distributionManagement>
    <status>deployed</status>
  </distributionManagement>
</project>