<!--
  This file describes your project to Maven 2. If working from an existing plugin,
  you will need to migrate the appropriate values from the project.xml file.
  See the various 'TODO:' items below for details.
  -->
<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.studio</groupId>
        <artifactId>studio-theme-parent</artifactId>
        <version>beta-4</version>
    </parent>

    <artifactId>studio-theme-confluence-plugin</artifactId>
    <packaging>jar</packaging>

    <name>JIRA Studio Theme Confluence Plugin</name>

    <dependencies>
        <!-- Confluence dependencies -->
        <dependency>
            <groupId>com.atlassian.studio</groupId>
            <artifactId>studio-theme-static-plugin</artifactId>
            <version>${pom.version}</version>
        </dependency>
        <dependency>
            <groupId>com.atlassian.confluence</groupId>
            <artifactId>confluence</artifactId>
            <version>2.7.1-studio-1</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.studio</groupId>
            <artifactId>applinks-core</artifactId>
            <version>${pom.version}</version>
        </dependency>
       <!-- JUnit is used to perform unit tests -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>
