<?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>
  <parent>
    <groupId>com.atlassian.pom</groupId>
    <artifactId>public-pom</artifactId>
    <version>4.0.21</version>
  </parent>
  <groupId>com.atlassian.aws</groupId>
  <artifactId>atlassian-aws-parent</artifactId>
  <name>Atlassian Amazon Web Services Library</name>
  <version>1.0.144</version>
  <packaging>pom</packaging>
  <scm>
    <connection>scm:git:ssh://git@bitbucket.org/atlassian/atlassian-aws.git</connection>
    <developerConnection>scm:git:ssh://git@bitbucket.org/atlassian/atlassian-aws.git</developerConnection>
    <url>https://bitbucket.org/atlassian/atlassian-aws</url>
    <tag>atlassian-aws-parent-1.0.144</tag>
  </scm>
  <licenses>
    <license>
      <name>Atlassian End User Agreement</name>
      <url>https://www.atlassian.com/end-user-agreement</url>
    </license>
  </licenses>

  <properties>
    <bouncycastle.version>1.55</bouncycastle.version> <!-- note: 1.56 is broken -->
    <slf4j.version>1.7.22</slf4j.version>

    <!-- use the version of httpclient that Bamboo uses -->
    <commons.httpclient4.version>4.5.2</commons.httpclient4.version>
    <commons.httpclient4-core.version>4.4.5</commons.httpclient4-core.version>
    <aws-java-sdk.version>1.11.105</aws-java-sdk.version>
    <guavaVersion>18.0</guavaVersion>
    <log4j.version>1.2.17</log4j.version>
  </properties>

  <modules>
    <module>atlassian-aws-bootstrap</module>
    <module>atlassian-aws</module>
  </modules>

  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>org.apache.httpcomponents</groupId>
        <artifactId>httpclient</artifactId>
        <version>${commons.httpclient4.version}</version>
      </dependency>
      <dependency>
        <groupId>org.apache.httpcomponents</groupId>
        <artifactId>httpcore</artifactId>
        <version>${commons.httpclient4-core.version}</version>
      </dependency>
      <dependency>
        <groupId>org.jetbrains</groupId>
        <artifactId>annotations</artifactId>
        <version>15.0</version>
      </dependency>
      <dependency>
        <groupId>commons-codec</groupId>
        <artifactId>commons-codec</artifactId>
        <version>1.10</version>
      </dependency>

      <dependency>
        <groupId>com.amazonaws</groupId>
        <artifactId>aws-java-sdk-bom</artifactId>
        <version>${aws-java-sdk.version}</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>

      <dependency>
        <groupId>commons-logging</groupId>
        <artifactId>commons-logging</artifactId>
        <version>1.1.1</version>
        <scope>provided</scope>
      </dependency>

      <dependency>
        <groupId>log4j</groupId>
        <artifactId>log4j</artifactId>
        <version>${log4j.version}</version>
      </dependency>

      <dependency>
        <groupId>org.hamcrest</groupId>
        <artifactId>hamcrest-junit</artifactId>
        <version>2.0.0.0</version>
        <scope>test</scope>
      </dependency>

    </dependencies>
  </dependencyManagement>

</project>
