<?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>jira-testkit-plugin-parent</artifactId>
    <groupId>com.atlassian.jira.tests</groupId>
    <version>6.0.13</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>jira-testkit-client</artifactId>
  <name>JIRA TestKit - Client</name>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <skip>${maven.test.unit.skip}</skip>
        </configuration>
      </plugin>
      <plugin>
        <groupId>com.atlassian.maven.plugins</groupId>
        <artifactId>maven-clover2-plugin</artifactId>
        <version>${clover.version}</version>
        <configuration>
          <excludes>
            <exclude>**/**</exclude>
          </excludes>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <version>1.6</version>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <artifactSet>
                <includes>
                  <include>commons-io:commons-io</include>
                </includes>
              </artifactSet>
              <relocations>
                <relocation>
                  <pattern>org.apache.commons.io</pattern>
                  <shadedPattern>shaded.org.apache.commons.io</shadedPattern>
                </relocation>
              </relocations>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <profiles>
    <profile>
      <id>jar-with-dependencies</id>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <version>2.2</version>
            <executions>
              <execution>
                <id>build-jar-with-dependencies</id>
                <phase>package</phase>
                <goals>
                  <goal>single</goal>
                </goals>
              </execution>
            </executions>
            <configuration>
              <descriptorRefs>
                <descriptorRef>jar-with-dependencies</descriptorRef>
              </descriptorRefs>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
  <dependencies>
    <dependency>
      <groupId>com.atlassian.jira.tests</groupId>
      <artifactId>jira-testkit-common</artifactId>
      <version>6.0.13</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.atlassian.plugins.rest</groupId>
      <artifactId>atlassian-rest-common</artifactId>
      <version>2.7.1</version>
      <scope>provided</scope>
      <exclusions>
        <exclusion>
          <artifactId>com.atlassian.jersey-library</artifactId>
          <groupId>com.atlassian.plugins.rest</groupId>
        </exclusion>
        <exclusion>
          <artifactId>jaxb-api</artifactId>
          <groupId>javax.xml.bind</groupId>
        </exclusion>
        <exclusion>
          <artifactId>sal-api</artifactId>
          <groupId>com.atlassian.sal</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hibernate-validator</artifactId>
          <groupId>org.hibernate</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>com.atlassian.jira</groupId>
      <artifactId>jira-api</artifactId>
      <version>5.2.KA20</version>
      <scope>provided</scope>
      <exclusions>
        <exclusion>
          <artifactId>atlassian-annotations</artifactId>
          <groupId>com.atlassian.annotations</groupId>
        </exclusion>
        <exclusion>
          <artifactId>entityengine-share</artifactId>
          <groupId>com.atlassian.ofbiz</groupId>
        </exclusion>
        <exclusion>
          <artifactId>entityengine</artifactId>
          <groupId>com.atlassian.ofbiz</groupId>
        </exclusion>
        <exclusion>
          <artifactId>webwork</artifactId>
          <groupId>opensymphony</groupId>
        </exclusion>
        <exclusion>
          <artifactId>pell-multipart-request</artifactId>
          <groupId>webwork</groupId>
        </exclusion>
        <exclusion>
          <artifactId>lucene-core</artifactId>
          <groupId>org.apache.lucene</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-extras</artifactId>
          <groupId>com.atlassian.extras</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-velocity</artifactId>
          <groupId>com.atlassian.velocity</groupId>
        </exclusion>
        <exclusion>
          <artifactId>osworkflow</artifactId>
          <groupId>osworkflow</groupId>
        </exclusion>
        <exclusion>
          <artifactId>propertyset</artifactId>
          <groupId>opensymphony</groupId>
        </exclusion>
        <exclusion>
          <artifactId>embedded-crowd-api</artifactId>
          <groupId>com.atlassian.crowd</groupId>
        </exclusion>
        <exclusion>
          <artifactId>guava</artifactId>
          <groupId>com.google.guava</groupId>
        </exclusion>
        <exclusion>
          <artifactId>fugue</artifactId>
          <groupId>com.atlassian.fugue</groupId>
        </exclusion>
        <exclusion>
          <artifactId>jackson-core-asl</artifactId>
          <groupId>org.codehaus.jackson</groupId>
        </exclusion>
        <exclusion>
          <artifactId>jackson-mapper-asl</artifactId>
          <groupId>org.codehaus.jackson</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-mail</artifactId>
          <groupId>com.atlassian.mail</groupId>
        </exclusion>
        <exclusion>
          <artifactId>oro</artifactId>
          <groupId>oro</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-bandana</artifactId>
          <groupId>atlassian-bandana</groupId>
        </exclusion>
        <exclusion>
          <artifactId>applinks-api</artifactId>
          <groupId>com.atlassian.applinks</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-plugins-webfragment</artifactId>
          <groupId>com.atlassian.plugins</groupId>
        </exclusion>
        <exclusion>
          <artifactId>jfreechart</artifactId>
          <groupId>jfree</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-plugins-webresource</artifactId>
          <groupId>com.atlassian.plugins</groupId>
        </exclusion>
        <exclusion>
          <artifactId>jcommon</artifactId>
          <groupId>jfree</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-gadgets-api</artifactId>
          <groupId>com.atlassian.gadgets</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-johnson</artifactId>
          <groupId>com.atlassian.johnson</groupId>
        </exclusion>
        <exclusion>
          <artifactId>joda-time</artifactId>
          <groupId>joda-time</groupId>
        </exclusion>
        <exclusion>
          <artifactId>log4j</artifactId>
          <groupId>log4j</groupId>
        </exclusion>
        <exclusion>
          <artifactId>slf4j-api</artifactId>
          <groupId>org.slf4j</groupId>
        </exclusion>
        <exclusion>
          <artifactId>quartz</artifactId>
          <groupId>quartz</groupId>
        </exclusion>
        <exclusion>
          <artifactId>analytics-api</artifactId>
          <groupId>com.atlassian.analytics</groupId>
        </exclusion>
        <exclusion>
          <artifactId>sal-api</artifactId>
          <groupId>com.atlassian.sal</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>com.atlassian.jira</groupId>
      <artifactId>jira-rest-api</artifactId>
      <version>5.2.KA20</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit-dep</artifactId>
      <version>4.10</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>xerces</groupId>
      <artifactId>xercesImpl</artifactId>
      <version>2.9.1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>axis</groupId>
      <artifactId>axis</artifactId>
      <version>1.3-atlassian-1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.atlassian.util.concurrent</groupId>
      <artifactId>atlassian-util-concurrent</artifactId>
      <version>0.0.5</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-core</artifactId>
      <version>1.2</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-library</artifactId>
      <version>1.2</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.jsoup</groupId>
      <artifactId>jsoup</artifactId>
      <version>1.3.3</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.sun.jersey</groupId>
      <artifactId>jersey-core</artifactId>
      <version>1.8-atlassian-6</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.sun.jersey</groupId>
      <artifactId>jersey-client</artifactId>
      <version>1.8-atlassian-6</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.sun.jersey.contribs</groupId>
      <artifactId>jersey-apache-client</artifactId>
      <version>1.9.1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-log4j12</artifactId>
      <version>1.6.4</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>slf4j-api</artifactId>
          <groupId>org.slf4j</groupId>
        </exclusion>
        <exclusion>
          <artifactId>log4j</artifactId>
          <groupId>log4j</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>com.atlassian.jira.tests</groupId>
      <artifactId>jira-testkit-testresources</artifactId>
      <version>6.0.13</version>
      <type>test-jar</type>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.atlassian.crowd</groupId>
      <artifactId>crowd-acceptance-test</artifactId>
      <version>2.4.3</version>
      <scope>compile</scope>
      <exclusions>
        <exclusion>
          <artifactId>crowd-web-app</artifactId>
          <groupId>com.atlassian.crowd</groupId>
        </exclusion>
        <exclusion>
          <artifactId>crowd-demo-app</artifactId>
          <groupId>com.atlassian.crowd</groupId>
        </exclusion>
        <exclusion>
          <artifactId>crowd-openid-server</artifactId>
          <groupId>com.atlassian.crowd</groupId>
        </exclusion>
        <exclusion>
          <artifactId>crowd-openid-client</artifactId>
          <groupId>com.atlassian.crowd</groupId>
        </exclusion>
        <exclusion>
          <artifactId>crowd-language</artifactId>
          <groupId>com.atlassian.crowd</groupId>
        </exclusion>
        <exclusion>
          <artifactId>crowd-api</artifactId>
          <groupId>com.atlassian.crowd</groupId>
        </exclusion>
        <exclusion>
          <artifactId>crowd-core</artifactId>
          <groupId>com.atlassian.crowd</groupId>
        </exclusion>
        <exclusion>
          <artifactId>crowd-ldap</artifactId>
          <groupId>com.atlassian.crowd</groupId>
        </exclusion>
        <exclusion>
          <artifactId>crowd-remote</artifactId>
          <groupId>com.atlassian.crowd</groupId>
        </exclusion>
        <exclusion>
          <artifactId>crowd-rest-plugin</artifactId>
          <groupId>com.atlassian.crowd</groupId>
        </exclusion>
        <exclusion>
          <artifactId>crowd-rest-test-api</artifactId>
          <groupId>com.atlassian.crowd</groupId>
        </exclusion>
        <exclusion>
          <artifactId>crowd-integration-atlassian-user</artifactId>
          <groupId>com.atlassian.crowd</groupId>
        </exclusion>
        <exclusion>
          <artifactId>crowd-integration-osuser</artifactId>
          <groupId>com.atlassian.crowd</groupId>
        </exclusion>
        <exclusion>
          <artifactId>crowd-server</artifactId>
          <groupId>com.atlassian.crowd</groupId>
        </exclusion>
        <exclusion>
          <artifactId>osuser</artifactId>
          <groupId>osuser</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-rest-common</artifactId>
          <groupId>com.atlassian.plugins.rest</groupId>
        </exclusion>
        <exclusion>
          <artifactId>mockito-all</artifactId>
          <groupId>org.mockito</groupId>
        </exclusion>
        <exclusion>
          <artifactId>junit</artifactId>
          <groupId>junit</groupId>
        </exclusion>
        <exclusion>
          <artifactId>slf4j-api</artifactId>
          <groupId>org.slf4j</groupId>
        </exclusion>
        <exclusion>
          <artifactId>slf4j-simple</artifactId>
          <groupId>org.slf4j</groupId>
        </exclusion>
        <exclusion>
          <artifactId>servlet-api</artifactId>
          <groupId>javax.servlet</groupId>
        </exclusion>
        <exclusion>
          <artifactId>log4j</artifactId>
          <groupId>log4j</groupId>
        </exclusion>
      </exclusions>
    </dependency>
  </dependencies>
</project>

