<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>closedsource-pom</artifactId>
        <version>3.0.2</version>
    </parent>
    
    <groupId>com.atlassian.beehive</groupId>
    <artifactId>beehive-compat</artifactId>
    <version>0.1.5</version>
    
    <name>Atlassian Beehive</name>
    <description>Atlassian compatibility library for the beehive cluster lock service</description>
    <url>http://docs.atlassian.com/${project.artifactId}/${project.version}</url>

    <scm>
        <connection>scm:git:ssh://git@bitbucket.org/atlassian/beehive-compat.git</connection>
        <developerConnection>scm:git:ssh://git@bitbucket.org/atlassian/beehive-compat.git</developerConnection>
        <url>https://bitbucket.org/atlassian/beehive-compat</url>
    </scm>

    <issueManagement>
        <system>JIRA</system>
        <url>https://ecosystem.atlassian.net/browse/BEE</url>
    </issueManagement>

    <!--<ciManagement>-->
    <!--<system>Bamboo</system>-->
    <!--<url>https://extranet-bamboo.internal.atlassian.com/browse/BEEHIVE</url>-->
    <!--</ciManagement>-->

    <distributionManagement>
        <site>
            <id>atlassian-documentation</id>
            <url>scpexe://docs-app.internal.atlassian.com/var/www/domains/docs.atlassian.com/${project.artifactId}/${project.version}/</url>
        </site>
    </distributionManagement>

    <properties>
        <atlassian-annotations.version>0.8.1</atlassian-annotations.version>
        <atlassian-util-concurrent.version>0.0.12</atlassian-util-concurrent.version>
        <jsr305.version>1.1</jsr305.version>
        <sal.version>2.7.0</sal.version>
        <slf4j.version>1.7.5</slf4j.version>

        <!-- Delegate implementations -->
        <beehive.version>0.0.6</beehive.version>
        <confluence.version>4.0</confluence.version>

        <!-- Test -->
        <hamcrest.version>1.3</hamcrest.version>
        <junit.version>4.11</junit.version>
        <mockito.version>1.9.0</mockito.version>
    </properties>

    <dependencies>
        <!-- Optional dependency on the real beehive API -->
        <dependency>
            <groupId>com.atlassian.beehive</groupId>
            <artifactId>beehive-api</artifactId>
            <version>${beehive.version}</version>
            <scope>provided</scope>
            <optional>true</optional>
        </dependency>

        <!-- Optional dependency on confluence for its own cluster lock implementation -->
        <dependency>
            <groupId>com.atlassian.confluence</groupId>
            <artifactId>confluence</artifactId>
            <version>${confluence.version}</version>
            <scope>provided</scope>
            <optional>true</optional>
        </dependency>

        <!-- Externals -->
        <dependency>
            <groupId>com.atlassian.annotations</groupId>
            <artifactId>atlassian-annotations</artifactId>
            <version>${atlassian-annotations.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.bundles</groupId>
            <artifactId>jsr305</artifactId>
            <version>${jsr305.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.sal</groupId>
            <artifactId>sal-api</artifactId>
            <version>${sal.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.util.concurrent</groupId>
            <artifactId>atlassian-util-concurrent</artifactId>
            <version>${atlassian-util-concurrent.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>${slf4j.version}</version>
            <scope>provided</scope>
        </dependency>

        <!-- Testing -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>${junit.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-core</artifactId>
            <version>${hamcrest.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-library</artifactId>
            <version>${hamcrest.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <version>${mockito.version}</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

</project>
