<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>18</version>
    </parent>

    <groupId>com.atlassian.pdkinstall</groupId>
    <artifactId>pdkinstall-plugin</artifactId>
    <packaging>atlassian-plugin</packaging>
    <version>0.4</version>
    <name>Atlassian PDK Install Plugin</name>
    <url>http://labs.atlassian.com/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>
        <dependency>
            <groupId>org.springframework.osgi</groupId>
            <artifactId>spring-osgi-core</artifactId>
            <version>1.1.3</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>com.atlassian.maven.plugins</groupId>
                <artifactId>maven-refapp-plugin</artifactId>
                <version>3.0-m2</version>
                <extensions>true</extensions>
                <configuration>
                    <productVersion>2.3.0</productVersion>
                    <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.springframework.osgi*;version="1.1.2"
                        </Import-Package>
                    </instructions>
                    <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>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <scm>
        <connection>scm:svn:https://labs.atlassian.com/svn/PDKI/tags/pdkinstall-plugin-0.4</connection>
        <developerConnection>scm:svn:https://labs.atlassian.com/svn/PDKI/tags/pdkinstall-plugin-0.4</developerConnection>
        <url>https://labs.atlassian.com/svn/PDKI/tags/pdkinstall-plugin-0.4</url>
    </scm>
    <properties>
        <jdkLevel>1.5</jdkLevel>
    </properties>
</project>
