<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.pom</groupId>
        <artifactId>atlassian-public-pom</artifactId>
        <version>29.14</version>
    </parent>

    <groupId>com.atlassian.pdkinstall</groupId>
    <artifactId>pdkinstall-plugin</artifactId>
    <packaging>atlassian-plugin</packaging>
    <version>0.6</version>
    <name>Atlassian PDK Install Plugin</name>
    <url>https://ecosystem.atlassian.net/browse/PDKI</url>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.felix</groupId>
            <artifactId>org.apache.felix.bundlerepository</artifactId>
            <version>1.4.0</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>2.3</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>commons-fileupload</groupId>
            <artifactId>commons-fileupload</artifactId>
            <version>1.2.1</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>commons-logging</groupId>
            <artifactId>commons-logging</artifactId>
            <version>1.0.4</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.plugins</groupId>
            <artifactId>atlassian-plugins-core</artifactId>
            <version>2.1.2</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>com.atlassian.maven.plugins</groupId>
                <artifactId>maven-amps-dispatcher-plugin</artifactId>
                <version>4.2.3</version>
            </plugin>
            <plugin>
                <groupId>com.atlassian.maven.plugins</groupId>
                <artifactId>maven-amps-plugin</artifactId>
                <version>4.2.3</version>
                <extensions>true</extensions>
                <configuration>
                    <instructions>
                        <Spring-Context>*;timeout:=60</Spring-Context>
                        <Import-Package>
                            org.apache.commons.logging;version="1.0",
                            org.apache.log4j*;version="1.2",
                            javax.servlet*;version="0.0.0",
                            javax.portlet;version="0.0.0";resolution:=optional,
                            com.atlassian.plugin;version="2.1",
                            com.atlassian.plugin.util.zip;version="2.1",
                            org.apache.commons.fileupload*;version="1.2",
                            org.apache.commons.io*;version="1.4",
                            org.osgi.framework*;version="1.0.1",
                        </Import-Package>
                    </instructions>
                    <products>
                    <product>
                        <id>refapp</id>
                        <instanceId>refapp</instanceId>
                        <version>2.3.0</version>
                        <pluginArtifacts>
                            <pluginArtifact>
                                <groupId>org.apache.felix</groupId>
                                <artifactId>org.apache.felix.bundlerepository</artifactId>
                            </pluginArtifact>
                        </pluginArtifacts>
                        <libArtifacts>
                            <libArtifact>
                                <groupId>commons-fileupload</groupId>
                                <artifactId>commons-fileupload</artifactId>
                                <version>1.2.1</version>
                            </libArtifact>
                        </libArtifacts>
                    </product>
                    </products>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <scm>
        <connection>scm:git:ssh://git@bitbucket.org/atlassian/pdkinstall-plugin.git</connection>
        <developerConnection>scm:git:ssh://git@bitbucket.org/atlassian/pdkinstall-plugin.git</developerConnection>
        <url>https://bitbucket.org/atlassian/pdkinstall-plugin</url>
    </scm>
    <properties>
        <jdkLevel>1.5</jdkLevel>
    </properties>
</project>
