<?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.pom</groupId>
        <artifactId>closedsource-pom</artifactId>
        <version>3.0.90</version>
    </parent>

    <groupId>com.atlassian.jira</groupId>
    <artifactId>jira-project-config-plugin-parent</artifactId>
    <packaging>pom</packaging>
    <!-- The version specified here is not actually the version being worked on. It is set to the minor version after the
         one being worked on to ensure that the version in development always takes precedence over our regular bugfix releases
         (created by the deployment pipeline) during plugin version resolution -->
    <version>8.1.4</version>
    <name>JIRA Project Config Plugin Parent POM</name>

    <description>Provides easier project administration with JIRA</description>

    <licenses>
        <license>
            <name>Atlassian 3.0 End User License Agreement</name>
            <url>http://www.atlassian.com/end-user-agreement/</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <organization>
        <name>Atlassian</name>
        <url>http://www.atlassian.com/</url>
    </organization>

    <modules>
        <module>jira-project-config-plugin</module>
        <module>jira-project-config-pageobjects</module>
    </modules>

    <build>
        <pluginManagement>
            <plugins>
                <plugin>
                    <groupId>com.atlassian.lesscss</groupId>
                    <artifactId>lesscss-maven-plugin</artifactId>
                    <version>${atlassian.less.version}</version>
                </plugin>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-enforcer-plugin</artifactId>
                    <executions>
                        <execution>
                            <id>enforce-build-environment</id>
                            <phase>none</phase>
                        </execution>
                        <execution>
                            <id>ban-milestones-and-release-candidates</id>
                            <phase>validate</phase>
                            <goals>
                                <goal>enforce</goal>
                            </goals>
                            <configuration>
                                <rules>
                                    <banVersionDeps>
                                        <excludes>
                                            <exclude>com.atlassian.plugins.rest:atlassian-rest-common</exclude>
                                        </excludes>
                                    </banVersionDeps>
                                </rules>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-surefire-plugin</artifactId>
                    <configuration>
                        <skipTests>${skipTests}</skipTests>
                    </configuration>
                </plugin>
                <plugin>
                    <groupId>com.atlassian.maven.plugins</groupId>
                    <artifactId>maven-amps-plugin</artifactId>
                    <version>${amps.version}</version>
                </plugin>
            </plugins>
        </pluginManagement>
    </build>

    <scm>
        <connection>scm:git:ssh://git@stash.atlassian.com:7997/jira/jira-project-config-plugin.git</connection>
        <developerConnection>scm:git:ssh://git@stash.atlassian.com:7997/jira/jira-project-config-plugin.git</developerConnection>
        <url>https://stash.atlassian.com/projects/JIRA/repos/jira-project-config-plugin</url>
        <tag>HEAD</tag>
    </scm>

    <properties>
        <amps.version>6.0.2</amps.version>
        <atlassian.less.version>2.1.1</atlassian.less.version>
        <atlassian.test.run.only.quarantined>false</atlassian.test.run.only.quarantined>
        <atlassian.test.suite.excludes />
        <atlassian.test.suite.includes />
        <jira.functest.single.testclass />
        <jira.hallelujah.queueId />
        <atlassian.test.suite.package>it.com.atlassian.jira.projectconfig.webdriver.tests</atlassian.test.suite.package>
        <atlassian.test.target.dir>${project.build.directory}</atlassian.test.target.dir>
        <atlassian.plugin.key>com.atlassian.jira.plugins.jira-project-config-plugin</atlassian.plugin.key>
        <atlassian.qunit.plugin.version>0.55</atlassian.qunit.plugin.version>
        <hallelujah.version>3.4</hallelujah.version>
        <javax.servlet.version>2.4</javax.servlet.version>
        <jersey.version>1.8-atlassian-12</jersey.version>
        <jira.compile.version>${jira.version}</jira.compile.version>
        <jira.data.version>${jira.version}</jira.data.version>
        <jira.rest.version>${jira.version}</jira.rest.version>
        <jira.version>7.0.0-20150525.155949</jira.version>
        <jira.workflow.designer.version>6.2.0.1</jira.workflow.designer.version>
        <jsr311.version>1.1</jsr311.version>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <log4j.version>1.2.16</log4j.version>

        <!-- TODO: Remove the enforcer exclusion above once we're on a proper version of REST. -->
        <rest.version>3.0.0-m012</rest.version>

        <quick.reload.version>1.13</quick.reload.version>
        <skipTests>false</skipTests>
        <spring.scanner.version>1.2.9</spring.scanner.version>
        <spring.version>2.5.6.SEC01</spring.version>
        <template.renderer.version>1.5.0</template.renderer.version>
        <testkit.version>7.0.45</testkit.version>
        <maven.test.unit.skip>false</maven.test.unit.skip>
        <xvfb.enable>false</xvfb.enable>
        <jdkLevel>1.8</jdkLevel>
    </properties>
</project>
