<?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">
  <parent>
    <artifactId>k3po.parent</artifactId>
    <groupId>org.kaazing</groupId>
    <version>2.0.0</version>
    <relativePath>../../pom.xml</relativePath>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>k3po.junit</artifactId>
  <name>k3po/junit</name>
  <description>K3PO junit</description>
  <url>https://github.com/kaazing/k3po</url>
  <scm>
    <connection>scm:git:https://github.com/k3po/k3po.git</connection>
    <developerConnection>${project.scm.connection}</developerConnection>
    <url>https://github.com/k3po/k3po</url>
  </scm>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-enforcer-plugin</artifactId>
      </plugin>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
      </plugin>
      <plugin>
        <artifactId>maven-failsafe-plugin</artifactId>
      </plugin>
      <plugin>
        <artifactId>maven-checkstyle-plugin</artifactId>
      </plugin>
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
      </plugin>
      <plugin>
        <artifactId>maven-source-plugin</artifactId>
      </plugin>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <artifactSet>
                <includes>
                  <include>org.kaazing:k3po.control</include>
                </includes>
              </artifactSet>
              <relocations>
                <relocation>
                  <pattern>org.kaazing.k3po.control</pattern>
                  <shadedPattern>org.kaazing.k3po.junit.shaded.control</shadedPattern>
                </relocation>
              </relocations>
              <dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>[4.11,)</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.kaazing</groupId>
      <artifactId>net.tcp</artifactId>
      <version>[1.1.0.0, 1.2.0.0)</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
</project>

