<?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.confluence.plugins</groupId>
        <artifactId>confluence-inbound-email-parent</artifactId>
        <version>5.9.3</version>
    </parent>

    <artifactId>confluence-reply-to-email</artifactId>
    <packaging>atlassian-plugin</packaging>

    <name>Confluence Reply to Email</name>
    <description>Allows users to create Confluence content by replying to Confluence notification emails.</description>

    <dependencies>
        <dependency>
            <groupId>com.atlassian.confluence</groupId>
            <artifactId>confluence</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.confluence.plugins</groupId>
            <artifactId>confluence-email-gateway</artifactId>
            <version>${project.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.sal</groupId>
            <artifactId>sal-api</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
         <plugins>
             <plugin>
                 <groupId>com.atlassian.maven.plugins</groupId>
                 <artifactId>confluence-maven-plugin</artifactId>
                 <configuration>
                     <instructions>
                         <Import-Package>
                             com.atlassian.confluence.plugins.emailgateway.api*,
                             *
                         </Import-Package>
                         <Private-Package>
                             com.atlassian.confluence.plugins.replytoemail*
                         </Private-Package>
                     </instructions>
                 </configuration>
             </plugin>
         </plugins>
     </build>
</project>
