<?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>portfolio-inline-issue-create-bridge</artifactId>
		<version>10.1.0-m0004</version>
        <relativePath>../pom.xml</relativePath>
    </parent>

    <artifactId>portfolio-inline-issue-create-bridge-api</artifactId>

    <name>Portfolio 2 / Portfolio [IIC Bridge - API]</name>

    <dependencies>

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

		<!-- Jira -->

		<dependency>
			<groupId>com.atlassian.jira</groupId>
			<artifactId>jira-api</artifactId>
			<scope>provided</scope>
		</dependency>

        <!-- spring -->

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-web</artifactId>
            <scope>provided</scope>
        </dependency>

        <!-- POCKETKNIFE LOGGING -->

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

        <!-- should be required by pocketknife! -->

        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <scope>provided</scope>
        </dependency>

        <!-- guava -->

        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
            <scope>provided</scope>
        </dependency>

		<!-- tests -->

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

		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
            <scope>test</scope>
		</dependency>

        <!-- Jira bridge -->

        <dependency>
            <groupId>com.atlassian.rm</groupId>
            <artifactId>portfolio-jira-bridge-api</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>

	</dependencies>

    <build>

        <defaultGoal>clean install</defaultGoal>

    </build>
    
</project>