<?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/maven-v4_0_0.xsd">

    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.atlassian.mywork</groupId>
        <artifactId>mywork-project</artifactId>
        <version>0.2.18</version>
    </parent>
    <artifactId>mywork-confluence-plugin</artifactId>

    <name>Notifications and Tasks - Confluence Plugin</name>
    <description>Plugin for Confluence</description>
    <packaging>atlassian-plugin</packaging>

    <dependencies>
        <dependency>
            <groupId>com.atlassian.mywork</groupId>
            <artifactId>mywork-common-plugin</artifactId>
            <version>0.2.18</version>
            <type>atlassian-plugin</type>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.mywork</groupId>
            <artifactId>mywork-confluence-provider-plugin</artifactId>
            <version>0.2.18</version>
            <type>atlassian-plugin</type>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.mywork</groupId>
            <artifactId>mywork-confluence-host-plugin</artifactId>
            <version>0.2.18</version>
            <type>atlassian-plugin</type>
            <scope>provided</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>com.atlassian.maven.plugins</groupId>
                <artifactId>maven-amps-plugin</artifactId>
                <extensions>true</extensions>
                <configuration>
                    <pluginDependencies>
                        <pluginDependency>
                            <groupId>com.atlassian.mywork</groupId>
                            <artifactId>mywork-common-plugin</artifactId>
                        </pluginDependency>
                        <pluginDependency>
                            <groupId>com.atlassian.mywork</groupId>
                            <artifactId>mywork-confluence-provider-plugin</artifactId>
                        </pluginDependency>
                        <pluginDependency>
                            <groupId>com.atlassian.mywork</groupId>
                            <artifactId>mywork-confluence-host-plugin</artifactId>
                        </pluginDependency>
                    </pluginDependencies>
                    <instructions>
                        <CONF_COMM />
                        <Import-Package>
                            com.atlassian.mywork.client.service,
                            com.atlassian.mywork.providers.confluence,
                            com.atlassian.mywork.host.service,
                        </Import-Package>
                    </instructions>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <properties>
        <root.dir>..</root.dir>
    </properties>

</project>
