<?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/xsd/maven-4.0.0.xsd">
    <parent>
        <artifactId>atlassian-messagequeue</artifactId>
        <groupId>com.atlassian.messagequeue</groupId>
        <version>2.2.0-b621083</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>atlassian-messagequeue-scheduler</artifactId>
    <description>An implementation of the atlassian-messagequeue API backed by the atlassian-scheduler API</description>

    <dependencies>
        <dependency>
            <groupId>cloud.atlassian.scheduler</groupId>
            <artifactId>atlassian-scheduler-api</artifactId>
        </dependency>
        <dependency>
            <groupId>com.atlassian.messagequeue</groupId>
            <artifactId>atlassian-messagequeue-api</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>com.atlassian.messagequeue</groupId>
            <artifactId>atlassian-messagequeue-core</artifactId>
            <version>${project.version}</version>
        </dependency>

        <!-- transitive dependencies of atlassian-messagequeue-core -->
        <dependency>
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
            <scope>provided</scope>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.codehaus.jackson</groupId>
            <artifactId>jackson-mapper-asl</artifactId>
            <scope>provided</scope>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.workcontext</groupId>
            <artifactId>atlassian-work-context-api</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.workcontext</groupId>
            <artifactId>atlassian-work-context-doorway</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.tenant</groupId>
            <artifactId>atlassian-tenant-context-api</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.tenant</groupId>
            <artifactId>atlassian-tenant-context-impl</artifactId>
            <scope>provided</scope>
        </dependency>

        <!-- Test dependencies -->
        <dependency>
            <groupId>cloud.atlassian.scheduler</groupId>
            <artifactId>atlassian-scheduler-caesium</artifactId>
            <version>${atlassian.scheduler.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency><!-- this is a required dependency of atlassian-scheduler-caesium. We have to declare it explicitly here since it has provided scope in atlassian-scheduler-caesium -->
            <groupId>com.atlassian.util.concurrent</groupId>
            <artifactId>atlassian-util-concurrent</artifactId>
            <version>2.4.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>cloud.atlassian.scheduler</groupId>
            <artifactId>atlassian-scheduler-core</artifactId>
            <version>${atlassian.scheduler.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-library</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-log4j12</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <scope>test</scope>
        </dependency>

    </dependencies>

</project>