<?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">

    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>com.atlassian.rm</groupId>
        <artifactId>roadmaps-environment</artifactId>
        <version>1000.9.0</version>
        <relativePath>../pom.xml</relativePath>
    </parent>

    <artifactId>roadmaps-environment-jira</artifactId>

    <name>Portfolio 2 / Roadmaps [Environment - JIRA]</name>

    <build>

        <testResources>

            <testResource>
                <directory>${configuredTestSourceDirectory}/resources</directory>
                <includes>
                    <include>**/*.xml</include>
                </includes>
                <filtering>true</filtering>
            </testResource>

        </testResources>

    </build>

    <dependencies>

        <dependency>
            <groupId>com.atlassian.rm</groupId>
            <artifactId>roadmaps-environment-api</artifactId>
            <version>${project.version}</version>
        </dependency>

        <dependency>
            <groupId>com.atlassian.rm</groupId>
            <artifactId>common-environment-jira</artifactId>
            <version>${project.version}</version>
        </dependency>

        <!-- POCKETKNIFE LOGGING -->

        <dependency>
            <groupId>cloud.atlassian.pocketknife</groupId>
            <artifactId>jira-pocketknife-enablement</artifactId>
        </dependency>

        <!-- spring -->

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
            <version>${spring.version}</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>${spring.version}</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-web</artifactId>
            <version>${spring.version}</version>
            <scope>provided</scope>
        </dependency>

        <!-- JIRA -->

        <dependency>
            <groupId>com.atlassian.jira</groupId>
            <artifactId>jira-api</artifactId>
            <version>${jira.api.version}</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>com.atlassian.jira</groupId>
            <artifactId>jira-core</artifactId>
            <version>${jira.api.version}</version>
            <scope>provided</scope>
        </dependency>

        <!-- Licensing -->

        <dependency>
            <groupId>com.atlassian.upm</groupId>
            <artifactId>licensing-api</artifactId>
            <version>2.0.1</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>com.atlassian.upm</groupId>
            <artifactId>upm-api</artifactId>
            <version>2.0.1</version>
            <scope>provided</scope>
        </dependency>


        <!-- Agile Bridge API-->

        <dependency>
            <groupId>com.atlassian.rm</groupId>
            <artifactId>common-bridges-agile-api</artifactId>
            <version>${project.version}</version>
        </dependency>


        <!-- tests -->

        <dependency>
            <groupId>com.atlassian.rm</groupId>
            <artifactId>common-test-utils-wired</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
        </dependency>

        <dependency>
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
        </dependency>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
        </dependency>

        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
        </dependency>

    </dependencies>

</project>