<?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>com.atlassian.bamboo.plugins</groupId>
  <artifactId>atlassian-bamboo-plugin-git</artifactId>
  <packaging>atlassian-plugin</packaging>
  <name>Atlassian Bamboo Git Repository Plugin</name>
  <version>3.0.26</version>
  <description>Plugin to provide Git SCM support.</description>
  <scm>
    <connection>scm:git:git://bitbucket.org/atlassian/bamboo-git-plugin.git</connection>
    <developerConnection>scm:git:ssh://git@bitbucket.org/atlassian/bamboo-git-plugin.git</developerConnection>
  </scm>
  <organization>
    <name>Atlassian</name>
    <url>http://www.atlassian.com/</url>
  </organization>
  <build>
    <plugins>
      <plugin>
        <groupId>com.atlassian.maven.plugins</groupId>
        <artifactId>maven-bamboo-plugin</artifactId>
        <version>3.11</version>
        <extensions>true</extensions>
        <configuration>
          <productVersion>${bamboo.version}</productVersion>
          <productDataVersion>${bamboo.data.version}</productDataVersion>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.12</version>
        <configuration>
          <excludedGroups>manual</excludedGroups>
          <parallel>methods</parallel>
          <threadCount>16</threadCount>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-dependency-plugin</artifactId>
        <executions>
          <execution>
            <id>unpack-dependencies</id>
            <goals>
              <goal>unpack-dependencies</goal>
            </goals>
            <configuration>
              <includeScope>system</includeScope>
              <outputDirectory>${build.outputDirectory}</outputDirectory>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <version>1.4</version>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <relocations>
                <relocation>
                  <pattern>org.eclipse.jgit</pattern>
                  <shadedPattern>org.shaded.eclipse.jgit</shadedPattern>
                </relocation>
              </relocations>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-release-plugin</artifactId>
        <version>2.2</version>
      </plugin>
      <plugin>
        <artifactId>maven-idea-plugin</artifactId>
        <version>2.3-atlassian-10</version>
        <configuration>
          <jdkLevel>1.6</jdkLevel>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-enforcer-plugin</artifactId>
        <version>1.2</version>
        <executions>
          <execution>
            <id>enforce-java</id>
            <goals>
              <goal>enforce</goal>
            </goals>
            <configuration>
              <rules>
                <requireJavaVersion>
                  <version>1.6.0</version>
                </requireJavaVersion>
                <bannedDependencies>
                  <excludes>
                    <exclude>org.bouncycastle:*</exclude>
                    <exclude>bouncycastle:*</exclude>
                  </excludes>
                  <includes>
                    <include>org.bouncycastle:bcprov-jdk15on</include>
                    <include>org.bouncycastle:bcpkix-jdk15on</include>
                    <include>org.bouncycastle:*:*:*:provided</include>
                    <include>bouncycastle:*:*:*:provided</include>
                  </includes>
                </bannedDependencies>
              </rules>
              <fail>true</fail>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-library</artifactId>
      <version>1.3</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>hamcrest-core</artifactId>
          <groupId>org.hamcrest</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>servlet-api</artifactId>
      <version>2.5</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>com.atlassian.bamboo</groupId>
      <artifactId>atlassian-bamboo-core</artifactId>
      <version>5.2-m2</version>
      <scope>provided</scope>
      <exclusions>
        <exclusion>
          <artifactId>atlassian-bamboo-api</artifactId>
          <groupId>com.atlassian.bamboo</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-bamboo-deployments-api</artifactId>
          <groupId>com.atlassian.bamboo</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-bamboo-core-agent-bootstrap</artifactId>
          <groupId>com.atlassian.bamboo</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-bamboo-xml-utils</artifactId>
          <groupId>com.atlassian.bamboo</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-velocity</artifactId>
          <groupId>com.atlassian.velocity</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-spring</artifactId>
          <groupId>com.atlassian.spring</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-bonnie</artifactId>
          <groupId>com.atlassian.bonnie</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-util-concurrent</artifactId>
          <groupId>com.atlassian.util.concurrent</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-secure-random</artifactId>
          <groupId>com.atlassian.security</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-trusted-apps-seraph-integration</artifactId>
          <groupId>com.atlassian.security.auth.trustedapps</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-trusted-apps-core</artifactId>
          <groupId>com.atlassian.security.auth.trustedapps</groupId>
        </exclusion>
        <exclusion>
          <artifactId>applinks-api</artifactId>
          <groupId>com.atlassian.applinks</groupId>
        </exclusion>
        <exclusion>
          <artifactId>applinks-host</artifactId>
          <groupId>com.atlassian.applinks</groupId>
        </exclusion>
        <exclusion>
          <artifactId>applinks-spi</artifactId>
          <groupId>com.atlassian.applinks</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-processutils</artifactId>
          <groupId>com.atlassian.utils</groupId>
        </exclusion>
        <exclusion>
          <artifactId>sitemesh</artifactId>
          <groupId>opensymphony</groupId>
        </exclusion>
        <exclusion>
          <artifactId>commons-collections</artifactId>
          <groupId>commons-collections</groupId>
        </exclusion>
        <exclusion>
          <artifactId>commons-lang</artifactId>
          <groupId>commons-lang</groupId>
        </exclusion>
        <exclusion>
          <artifactId>commons-codec</artifactId>
          <groupId>commons-codec</groupId>
        </exclusion>
        <exclusion>
          <artifactId>commons-httpclient</artifactId>
          <groupId>commons-httpclient</groupId>
        </exclusion>
        <exclusion>
          <artifactId>plexus-utils</artifactId>
          <groupId>org.codehaus.plexus</groupId>
        </exclusion>
        <exclusion>
          <artifactId>dom4j</artifactId>
          <groupId>dom4j</groupId>
        </exclusion>
        <exclusion>
          <artifactId>exml</artifactId>
          <groupId>exml</groupId>
        </exclusion>
        <exclusion>
          <artifactId>freemarker</artifactId>
          <groupId>org.freemarker</groupId>
        </exclusion>
        <exclusion>
          <artifactId>javacvs</artifactId>
          <groupId>javacvs</groupId>
        </exclusion>
        <exclusion>
          <artifactId>spring-jms</artifactId>
          <groupId>org.springframework</groupId>
        </exclusion>
        <exclusion>
          <artifactId>spring-core</artifactId>
          <groupId>org.springframework</groupId>
        </exclusion>
        <exclusion>
          <artifactId>spring-context</artifactId>
          <groupId>org.springframework</groupId>
        </exclusion>
        <exclusion>
          <artifactId>spring-remoting</artifactId>
          <groupId>org.springframework</groupId>
        </exclusion>
        <exclusion>
          <artifactId>p4java</artifactId>
          <groupId>com.tek42.perforce</groupId>
        </exclusion>
        <exclusion>
          <artifactId>commons-digester</artifactId>
          <groupId>commons-digester</groupId>
        </exclusion>
        <exclusion>
          <artifactId>aspectjrt</artifactId>
          <groupId>org.aspectj</groupId>
        </exclusion>
        <exclusion>
          <artifactId>aspectjweaver</artifactId>
          <groupId>org.aspectj</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hibernate</artifactId>
          <groupId>hibernate</groupId>
        </exclusion>
        <exclusion>
          <artifactId>cglib-nodep</artifactId>
          <groupId>cglib</groupId>
        </exclusion>
        <exclusion>
          <artifactId>mail</artifactId>
          <groupId>javax.mail</groupId>
        </exclusion>
        <exclusion>
          <artifactId>activation</artifactId>
          <groupId>javax.activation</groupId>
        </exclusion>
        <exclusion>
          <artifactId>smack</artifactId>
          <groupId>org.igniterealtime.smack</groupId>
        </exclusion>
        <exclusion>
          <artifactId>jdom</artifactId>
          <groupId>jdom</groupId>
        </exclusion>
        <exclusion>
          <artifactId>joda-time</artifactId>
          <groupId>joda-time</groupId>
        </exclusion>
        <exclusion>
          <artifactId>quartz</artifactId>
          <groupId>opensymphony</groupId>
        </exclusion>
        <exclusion>
          <artifactId>svnkit</artifactId>
          <groupId>org.tmatesoft.svnkit</groupId>
        </exclusion>
        <exclusion>
          <artifactId>jsch</artifactId>
          <groupId>com.jcraft</groupId>
        </exclusion>
        <exclusion>
          <artifactId>velocity</artifactId>
          <groupId>velocity</groupId>
        </exclusion>
        <exclusion>
          <artifactId>struts2-core</artifactId>
          <groupId>org.apache.struts</groupId>
        </exclusion>
        <exclusion>
          <artifactId>xercesImpl</artifactId>
          <groupId>xerces</groupId>
        </exclusion>
        <exclusion>
          <artifactId>xml-apis</artifactId>
          <groupId>xml-apis</groupId>
        </exclusion>
        <exclusion>
          <artifactId>xstream</artifactId>
          <groupId>com.thoughtworks.xstream</groupId>
        </exclusion>
        <exclusion>
          <artifactId>xwork-core</artifactId>
          <groupId>org.apache.struts.xwork</groupId>
        </exclusion>
        <exclusion>
          <artifactId>webwork-compat</artifactId>
          <groupId>com.atlassian</groupId>
        </exclusion>
        <exclusion>
          <artifactId>lucene-core</artifactId>
          <groupId>org.apache.lucene</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-mail</artifactId>
          <groupId>com.atlassian.mail</groupId>
        </exclusion>
        <exclusion>
          <artifactId>activemq-core</artifactId>
          <groupId>org.apache.activemq</groupId>
        </exclusion>
        <exclusion>
          <artifactId>lingo</artifactId>
          <groupId>org.logicblaze.lingo</groupId>
        </exclusion>
        <exclusion>
          <artifactId>xbean-spring</artifactId>
          <groupId>org.apache.xbean</groupId>
        </exclusion>
        <exclusion>
          <artifactId>jms</artifactId>
          <groupId>javax.jms</groupId>
        </exclusion>
        <exclusion>
          <artifactId>slf4j-api</artifactId>
          <groupId>org.slf4j</groupId>
        </exclusion>
        <exclusion>
          <artifactId>sshd-core</artifactId>
          <groupId>org.apache.sshd</groupId>
        </exclusion>
        <exclusion>
          <artifactId>botocss</artifactId>
          <groupId>com.atlassian.botocss</groupId>
        </exclusion>
        <exclusion>
          <artifactId>truezip-file</artifactId>
          <groupId>de.schlichtherle.truezip</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-annotations</artifactId>
          <groupId>com.atlassian.annotations</groupId>
        </exclusion>
        <exclusion>
          <artifactId>analytics-api</artifactId>
          <groupId>com.atlassian.analytics</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hamcrest-core</artifactId>
          <groupId>org.hamcrest</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>com.atlassian.bamboo</groupId>
      <artifactId>atlassian-bamboo-web</artifactId>
      <version>5.2-m2</version>
      <scope>provided</scope>
      <exclusions>
        <exclusion>
          <artifactId>atlassian-bamboo-persistence</artifactId>
          <groupId>com.atlassian.bamboo</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-bamboo-migration</artifactId>
          <groupId>com.atlassian.bamboo</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-bamboo-language</artifactId>
          <groupId>com.atlassian.bamboo</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-bamboo-charts</artifactId>
          <groupId>com.atlassian.bamboo</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-bamboo-upgrader</artifactId>
          <groupId>com.atlassian.bamboo</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-bamboo-license</artifactId>
          <groupId>com.atlassian.bamboo</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-bamboo-agent-classserver</artifactId>
          <groupId>com.atlassian.bamboo</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-bamboo-agent-local</artifactId>
          <groupId>com.atlassian.bamboo</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-bamboo-agent-elastic-server</artifactId>
          <groupId>com.atlassian.bamboo</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-bamboo-maven-embedder</artifactId>
          <groupId>com.atlassian.bamboo</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-johnson</artifactId>
          <groupId>com.atlassian.johnson</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-profiling</artifactId>
          <groupId>com.atlassian.profiling</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-xwork-12</artifactId>
          <groupId>com.atlassian.xwork</groupId>
        </exclusion>
        <exclusion>
          <artifactId>rome</artifactId>
          <groupId>rome</groupId>
        </exclusion>
        <exclusion>
          <artifactId>spring-beans</artifactId>
          <groupId>org.springframework</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hsqldb</artifactId>
          <groupId>hsqldb</groupId>
        </exclusion>
        <exclusion>
          <artifactId>c3p0</artifactId>
          <groupId>c3p0</groupId>
        </exclusion>
        <exclusion>
          <artifactId>jta</artifactId>
          <groupId>javax.transaction</groupId>
        </exclusion>
        <exclusion>
          <artifactId>pjl-comp-filter</artifactId>
          <groupId>pjl-comp-filter</groupId>
        </exclusion>
        <exclusion>
          <artifactId>commons-fileupload</artifactId>
          <groupId>commons-fileupload</groupId>
        </exclusion>
        <exclusion>
          <artifactId>urlrewritefilter</artifactId>
          <groupId>org.tuckey</groupId>
        </exclusion>
        <exclusion>
          <artifactId>velocity-tools</artifactId>
          <groupId>velocity-tools</groupId>
        </exclusion>
        <exclusion>
          <artifactId>commons-dbutils</artifactId>
          <groupId>commons-dbutils</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-user-crowd-provider</artifactId>
          <groupId>com.atlassian.bamboo</groupId>
        </exclusion>
        <exclusion>
          <artifactId>stax-api</artifactId>
          <groupId>javax.xml.stream</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-core</artifactId>
          <groupId>com.atlassian.core</groupId>
        </exclusion>
        <exclusion>
          <artifactId>maven-embedder</artifactId>
          <groupId>org.apache.maven</groupId>
        </exclusion>
        <exclusion>
          <artifactId>maven-model</artifactId>
          <groupId>org.apache.maven</groupId>
        </exclusion>
        <exclusion>
          <artifactId>jcaptcha</artifactId>
          <groupId>com.octo.captcha</groupId>
        </exclusion>
        <exclusion>
          <artifactId>jcaptcha-api</artifactId>
          <groupId>com.octo.captcha</groupId>
        </exclusion>
        <exclusion>
          <artifactId>filters</artifactId>
          <groupId>com.jhlabs</groupId>
        </exclusion>
        <exclusion>
          <artifactId>struts2-sitemesh-plugin</artifactId>
          <groupId>org.apache.struts</groupId>
        </exclusion>
        <exclusion>
          <artifactId>smackx</artifactId>
          <groupId>org.igniterealtime.smack</groupId>
        </exclusion>
        <exclusion>
          <artifactId>spring-core</artifactId>
          <groupId>org.springframework</groupId>
        </exclusion>
        <exclusion>
          <artifactId>spring-context</artifactId>
          <groupId>org.springframework</groupId>
        </exclusion>
        <exclusion>
          <artifactId>cglib-nodep</artifactId>
          <groupId>cglib</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hibernate</artifactId>
          <groupId>hibernate</groupId>
        </exclusion>
        <exclusion>
          <artifactId>jdom</artifactId>
          <groupId>jdom</groupId>
        </exclusion>
        <exclusion>
          <artifactId>struts2-core</artifactId>
          <groupId>org.apache.struts</groupId>
        </exclusion>
        <exclusion>
          <artifactId>webwork-compat</artifactId>
          <groupId>com.atlassian</groupId>
        </exclusion>
        <exclusion>
          <artifactId>freemarker</artifactId>
          <groupId>org.freemarker</groupId>
        </exclusion>
        <exclusion>
          <artifactId>sitemesh</artifactId>
          <groupId>opensymphony</groupId>
        </exclusion>
        <exclusion>
          <artifactId>commons-collections</artifactId>
          <groupId>commons-collections</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-annotations</artifactId>
          <groupId>com.atlassian.annotations</groupId>
        </exclusion>
        <exclusion>
          <artifactId>analytics-api</artifactId>
          <groupId>com.atlassian.analytics</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
      <version>1.4-backport-IO-168</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>1.2.15</version>
      <scope>provided</scope>
      <exclusions>
        <exclusion>
          <artifactId>jmxri</artifactId>
          <groupId>com.sun.jmx</groupId>
        </exclusion>
        <exclusion>
          <artifactId>jmxtools</artifactId>
          <groupId>com.sun.jdmk</groupId>
        </exclusion>
        <exclusion>
          <artifactId>mail</artifactId>
          <groupId>javax.mail</groupId>
        </exclusion>
        <exclusion>
          <artifactId>jms</artifactId>
          <groupId>javax.jms</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
      <version>10.0.1</version>
      <scope>provided</scope>
      <exclusions>
        <exclusion>
          <artifactId>jsr305</artifactId>
          <groupId>com.google.code.findbugs</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>com.atlassian.plugins.rest</groupId>
      <artifactId>atlassian-rest-common</artifactId>
      <version>2.6.3.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.bamboo</groupId>
      <artifactId>atlassian-bamboo-test-utils</artifactId>
      <version>5.2-m2</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>staxmate</artifactId>
          <groupId>org.codehaus.staxmate</groupId>
        </exclusion>
        <exclusion>
          <artifactId>junit</artifactId>
          <groupId>junit</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hamcrest-all</artifactId>
          <groupId>org.hamcrest</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-bamboo-api</artifactId>
          <groupId>com.atlassian.bamboo</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-bamboo-deployments-api</artifactId>
          <groupId>com.atlassian.bamboo</groupId>
        </exclusion>
        <exclusion>
          <artifactId>commons-httpclient</artifactId>
          <groupId>commons-httpclient</groupId>
        </exclusion>
        <exclusion>
          <artifactId>quartz</artifactId>
          <groupId>opensymphony</groupId>
        </exclusion>
        <exclusion>
          <artifactId>sshd-core</artifactId>
          <groupId>org.apache.sshd</groupId>
        </exclusion>
        <exclusion>
          <artifactId>commons-collections</artifactId>
          <groupId>commons-collections</groupId>
        </exclusion>
        <exclusion>
          <artifactId>atlassian-annotations</artifactId>
          <groupId>com.atlassian.annotations</groupId>
        </exclusion>
        <exclusion>
          <artifactId>analytics-api</artifactId>
          <groupId>com.atlassian.analytics</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>com.atlassian.bamboo.plugins</groupId>
      <artifactId>atlassian-bamboo-plugin-ssh</artifactId>
      <version>5.2-m2</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>analytics-api</artifactId>
          <groupId>com.atlassian.analytics</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.testng</groupId>
      <artifactId>testng</artifactId>
      <version>5.14.6</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>bsh</artifactId>
          <groupId>org.beanshell</groupId>
        </exclusion>
        <exclusion>
          <artifactId>guice</artifactId>
          <groupId>com.google.inject</groupId>
        </exclusion>
        <exclusion>
          <artifactId>jcommander</artifactId>
          <groupId>com.beust</groupId>
        </exclusion>
        <exclusion>
          <artifactId>junit</artifactId>
          <groupId>junit</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-core</artifactId>
      <version>1.8.5</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>objenesis</artifactId>
          <groupId>org.objenesis</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hamcrest-core</artifactId>
          <groupId>org.hamcrest</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>com.atlassian.testtools</groupId>
      <artifactId>atlassian-testtools</artifactId>
      <version>1.8</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>maven-core</artifactId>
          <groupId>org.apache.maven</groupId>
        </exclusion>
        <exclusion>
          <artifactId>easymock</artifactId>
          <groupId>org.easymock</groupId>
        </exclusion>
        <exclusion>
          <artifactId>dom4j</artifactId>
          <groupId>dom4j</groupId>
        </exclusion>
        <exclusion>
          <artifactId>junit</artifactId>
          <groupId>junit</groupId>
        </exclusion>
        <exclusion>
          <artifactId>commons-collections</artifactId>
          <groupId>commons-collections</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.eclipse.jetty</groupId>
      <artifactId>jetty-server</artifactId>
      <version>7.2.1.v20101111</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>jetty-continuation</artifactId>
          <groupId>org.eclipse.jetty</groupId>
        </exclusion>
        <exclusion>
          <artifactId>jetty-http</artifactId>
          <groupId>org.eclipse.jetty</groupId>
        </exclusion>
      </exclusions>
    </dependency>
  </dependencies>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>bouncycastle</groupId>
        <artifactId>bcprov-jdk14</artifactId>
        <version>140</version>
        <scope>provided</scope>
      </dependency>
      <dependency>
        <groupId>bouncycastle</groupId>
        <artifactId>bcprov-jdk15</artifactId>
        <version>140</version>
        <scope>provided</scope>
      </dependency>
      <dependency>
        <groupId>org.bouncycastle</groupId>
        <artifactId>bcprov-jdk15</artifactId>
        <version>1.44</version>
        <scope>provided</scope>
      </dependency>
      <dependency>
        <groupId>org.bouncycastle</groupId>
        <artifactId>bcprov-jdk16</artifactId>
        <version>1.46</version>
        <scope>provided</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>
  <distributionManagement>
    <repository>
      <id>atlassian-contrib</id>
      <name>Atlassian Contrib Repository</name>
      <url>https://maven.atlassian.com/contrib</url>
    </repository>
    <snapshotRepository>
      <id>atlassian-contrib-snapshot</id>
      <name>Atlassian Contrib Snapshot Repository</name>
      <url>https://maven.atlassian.com/contrib-snapshot</url>
    </snapshotRepository>
  </distributionManagement>
  <properties>
    <bamboo.version>5.2-m2</bamboo.version>
    <atlassian.rest.jersey.version>1.8-atlassian-6</atlassian.rest.jersey.version>
    <atlassian.rest.jackson.version>1.9.1</atlassian.rest.jackson.version>
    <atlassian.rest.version>2.6.3.1</atlassian.rest.version>
    <bamboo.data.version>3.2.2</bamboo.data.version>
  </properties>
</project>

