<?xml version="1.0"?>
<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">
   <parent>
      <artifactId>jboss-test-harness-parent</artifactId>
      <groupId>org.jboss.test-harness</groupId>
      <version>1.0.0.BETA3</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.jboss.test-harness</groupId>
   <artifactId>jboss-test-harness-tests</artifactId>
   <name>JBoss Test Harness Integration Tests</name>
   
   <dependencies>

      <dependency>
         <groupId>org.jboss.test-harness</groupId>
         <artifactId>jboss-test-harness</artifactId>
      </dependency>

   </dependencies>
   
   <build>
      <plugins>
         <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-dependency-plugin</artifactId>
            <executions>
               <execution>
                  <id>copy-in-container-dependencies</id>
                  <phase>generate-test-resources</phase>
                  <goals>
                     <goal>copy</goal>
                  </goals>
                  <configuration>
                     <outputDirectory>${project.build.outputDirectory}/lib</outputDirectory>
                     <stripVersion>true</stripVersion>
                     <artifactItems>
                        <artifactItem>
                           <groupId>org.jboss.test-harness</groupId>
                           <artifactId>jboss-test-harness</artifactId>
                           <overWrite>true</overWrite>
                        </artifactItem>
                     </artifactItems>
                  </configuration>
               </execution>
            </executions>
         </plugin>
      </plugins>
   	<defaultGoal>install</defaultGoal>
   </build>

</project>
