<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.upm</groupId>
        <artifactId>atlassian-universal-plugin-manager</artifactId>
        <version>3.0.10</version>
    </parent>
    <artifactId>atlassian-universal-plugin-manager-integration-tests</artifactId>
    <packaging>atlassian-plugin</packaging>
    <name>Atlassian Universal Plugin Manager Integration/UI Tests</name>
    <description>Integration tests, UI tests, mock PAC, and AMPS product configurations.</description>

    <dependencies>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>atlassian-universal-plugin-manager-plugin</artifactId>
            <version>${project.version}</version>
            <exclusions>
                <exclusion>
                    <groupId>com.atlassian.security</groupId>
                    <artifactId>atlassian-secure-xml</artifactId>
                </exclusion>
            </exclusions>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>atlassian-universal-plugin-manager-plugin</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
            <type>test-jar</type>
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>plugin-installer-plugin</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>upm-application-plugin</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.upm</groupId>
            <artifactId>licensing-api</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.jira</groupId>
            <artifactId>atlassian-jira-pageobjects</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.confluence</groupId>
            <artifactId>confluence-webdriver-pageobjects</artifactId>
            <version>${confluence.pageobjects.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.bitbucket.server</groupId>
            <artifactId>bitbucket-page-objects</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.selenium</groupId>
            <artifactId>atlassian-pageobjects-api</artifactId>
            <version>${atlassian.selenium.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.selenium</groupId>
            <artifactId>atlassian-pageobjects-elements</artifactId>
            <version>${atlassian.selenium.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.browsers</groupId>
            <artifactId>atlassian-browsers-auto</artifactId>
            <version>2.8.4</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.browsers</groupId>
            <artifactId>firefox-profile</artifactId>
            <version>44.0-nofirebug</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.refapp</groupId>
            <artifactId>atlassian-refapp-pageobjects</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>atlassian-universal-plugin-manager-pageobjects</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>fake-mac-plugin</artifactId>
            <version>${project.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>fake-pac-plugin</artifactId>
            <version>${project.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-installable</artifactId>
            <version>${project.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-license-checker-role-based</artifactId>
            <version>${project.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-bundled-has-no-update</artifactId>
            <version>${project.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
            <version>${project.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-nonbundled</artifactId>
            <version>${project.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>testing</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.sun.jersey.contribs</groupId>
            <artifactId>jersey-apache-client</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>commons-logging</groupId>
                    <artifactId>commons-logging</artifactId>
                </exclusion>
            </exclusions>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.plugins.rest</groupId>
            <artifactId>atlassian-rest-common</artifactId>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
          <groupId>com.atlassian.application</groupId>
          <artifactId>atlassian-application-api</artifactId>
          <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.plugins</groupId>
            <artifactId>atlassian-plugins-core</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.bundles</groupId>
            <artifactId>jsr305</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.util.concurrent</groupId>
            <artifactId>atlassian-util-concurrent</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.sal</groupId>
            <artifactId>sal-api</artifactId>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>jcl-over-slf4j</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.integrationtesting</groupId>
            <artifactId>atlassian-integrationtesting-lib</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>net.sourceforge.htmlunit</groupId>
                    <artifactId>htmlunit</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>be.roam.hue</groupId>
                    <artifactId>hue</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>junit</groupId>
                    <artifactId>junit-dep</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpclient</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>joda-time</groupId>
            <artifactId>joda-time</artifactId>
        </dependency>
        <dependency>
            <groupId>rome</groupId>
            <artifactId>rome</artifactId>
        </dependency>
        <dependency>
            <groupId>org.jdom</groupId>
            <artifactId>com.springsource.org.jdom</artifactId>
        </dependency>
        <dependency>
            <groupId>com.sun.jersey.contribs</groupId>
            <artifactId>jersey-multipart</artifactId>
        </dependency>
        <dependency>
            <groupId>commons-codec</groupId>
            <artifactId>commons-codec</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.google.inject</groupId>
            <artifactId>guice</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>commons-lang</groupId>
            <artifactId>commons-lang</artifactId>
        </dependency>
        <dependency>
            <groupId>com.atlassian.qunit</groupId>
            <artifactId>atlassian-qunit-plugin-util</artifactId>
            <version>${atlassian.qunit.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian</groupId>
            <artifactId>atlassian-test-categories</artifactId>
        </dependency>
        <dependency>
            <groupId>com.atlassian.utt</groupId>
            <artifactId>toolkit</artifactId>
        </dependency>
        <dependency>
            <groupId>com.jayway.restassured</groupId>
            <artifactId>rest-assured</artifactId>
            <version>2.9.0</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.whisper</groupId>
            <artifactId>atlassian-whisper-testkit</artifactId>
            <version>${whisper.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.qunit</groupId>
            <artifactId>atlassian-qunit-plugin</artifactId>
            <version>${atlassian.qunit.version}</version>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>com.atlassian.maven.plugins</groupId>
                <artifactId>amps-maven-plugin</artifactId>
                <extensions>true</extensions>
                <configuration>
                    <httpPort>${httpPort}</httpPort>
                    <contextPath>${contextPath}</contextPath>
                    <installPlugin>false</installPlugin>
                    <systemPropertyVariables>
                        <atlassian.dev.mode>${atlassian.dev.mode}</atlassian.dev.mode>
                        <atlassian.id.baseurl>${atlassian.id.baseurl}</atlassian.id.baseurl>
                        <devtoolbar.enable>true</devtoolbar.enable>
                        <hamlet.baseurl>${hamlet.baseurl}</hamlet.baseurl>
                        <mac.baseurl>${mac.baseurl}</mac.baseurl>
                        <mpac.baseurl>${mpac.baseurl}</mpac.baseurl>
                        <mpac.website>${mpac.website}</mpac.website>
                        <topology.baseurl>${topology.baseurl}</topology.baseurl>
                        <shopping.cart.url>${shopping.cart.url}</shopping.cart.url>
                        <mac.billing.url>${mac.billing.url}</mac.billing.url>
                        <httpPort>${httpPort}</httpPort>
                        <contextPath>${contextPath}</contextPath>
                        <upm.pac.disable>${upm.pac.disable}</upm.pac.disable>
                        <analytics.server>${analytics.server}</analytics.server>
                        <atlassian.dev.confluence.whatsnew.show>false</atlassian.dev.confluence.whatsnew.show>
                        <atlassian.dev.jira.whatsnew.show>false</atlassian.dev.jira.whatsnew.show>
                        <atlassian.upm.server.data.disable>${atlassian.upm.server.data.disable}</atlassian.upm.server.data.disable>
                        <atlassian.webresource.disable.minification>${atlassian.webresource.disable.minification}</atlassian.webresource.disable.minification>
                        <atlassian.upm.debug>${atlassian.upm.debug}</atlassian.upm.debug>
                        <atlassian.upm.on.demand.plugin.installation.allowed>${atlassian.upm.on.demand.plugin.installation.allowed}</atlassian.upm.on.demand.plugin.installation.allowed>
                        <atlassian.upm.on.demand.update.check.interval>${atlassian.upm.on.demand.update.check.interval}</atlassian.upm.on.demand.update.check.interval>
                        <atlassian.upm.on.demand>${atlassian.upm.on.demand}</atlassian.upm.on.demand>
                        <atlassian.upm.user.installed.override>${atlassian.upm.user.installed.override}</atlassian.upm.user.installed.override>
                        <atlassian.upm.user.installed.p2.override>${atlassian.upm.user.installed.p2.override}</atlassian.upm.user.installed.p2.override>
                        <atlassian.upm.required.plugins.override>${atlassian.upm.required.plugins.override}</atlassian.upm.required.plugins.override>
                        <atlassian.upm.required.modules.override>${atlassian.upm.required.modules.override}</atlassian.upm.required.modules.override>
                        <atlassian.upm.on.demand.pva.blacklist>${atlassian.upm.on.demand.pva.blacklist}</atlassian.upm.on.demand.pva.blacklist>
                        <atlassian.upm.installer.plugin.scan.directory>${atlassian.upm.installer.plugin.scan.directory}</atlassian.upm.installer.plugin.scan.directory>
                        <atlassian.upm.check.license.feature>${atlassian.upm.check.license.feature}</atlassian.upm.check.license.feature>
                        <atlassian.upm.purchased.addons.feature>${atlassian.upm.purchased.addons.feature}</atlassian.upm.purchased.addons.feature>
                        <plugin.resource.directories>${upm.plugin.resources}</plugin.resource.directories>
                        <xvfb.enable>${xvfb.enable}</xvfb.enable>
                        <xvfb.options>-listen,tcp,-once,-screen,0,1920x1080x24</xvfb.options>
                        <webdriver.browser>${webdriver.browser}</webdriver.browser>
                        <upm.version>${project.version}</upm.version>
                        <qunit.testoutput.location>${project.build.directory}/surefire-reports</qunit.testoutput.location>
                        <johnson.spring.lifecycle.synchronousStartup>true</johnson.spring.lifecycle.synchronousStartup> <!-- UPM-4663 - Needed for Stash 3.2+ so Cargo will wait for stash to startup -->
                        <com.atlassian.jira.startup.LauncherContextListener.SYNCHRONOUS>true</com.atlassian.jira.startup.LauncherContextListener.SYNCHRONOUS> <!-- Disable async startup for JIRA 7.1+ -->
                        <password.confirmation.disabled>${upm.disable.websudo}</password.confirmation.disabled>
                        <jira.websudo.is.disabled>${upm.disable.websudo}</jira.websudo.is.disabled>
                        <!-- Disable automatic language detection to work around Confluence's bundled translations -->
                        <confluence.browser.language.enabled>false</confluence.browser.language.enabled>
                        <!-- Disable Synchrony for Confluence -->
                        <atlassian.darkfeature.site-wide.shared-drafts>false</atlassian.darkfeature.site-wide.shared-drafts>
                        <atlassian.darkfeature.site-wide.synchrony>false</atlassian.darkfeature.site-wide.synchrony>
                        <synchrony.btf.disabled>true</synchrony.btf.disabled>
                    </systemPropertyVariables>
                    <jvmArgs>-Xmx1280m</jvmArgs>
                    <pluginArtifacts>
                        <!-- Test artifacts -->
                        <pluginArtifact>
                            <groupId>com.atlassian.upm</groupId>
                            <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-updatable-requires-restart-1.0</artifactId>
                            <version>${project.version}</version>
                        </pluginArtifact>
                        <pluginArtifact>
                            <groupId>com.atlassian.upm</groupId>
                            <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-license-checker</artifactId>
                            <version>${project.version}</version>
                        </pluginArtifact>
                        <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                        <pluginArtifact>
                            <groupId>${project.groupId}</groupId>
                            <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                            <version>${project.version}</version>
                        </pluginArtifact>
                    </pluginArtifacts>
                    <bundledArtifacts>
                        <bundledArtifact>
                            <groupId>com.atlassian.upm</groupId>
                            <artifactId>atlassian-universal-plugin-manager-plugin</artifactId>
                            <version>${project.version}</version>
                        </bundledArtifact>
                        <bundledArtifact>
                            <groupId>com.atlassian.upm</groupId>
                            <artifactId>plugin-installer-plugin</artifactId>
                            <version>${project.version}</version>
                        </bundledArtifact>
                        <bundledArtifact>
                            <groupId>com.atlassian.upm</groupId>
                            <artifactId>wired-tests-helper-plugin</artifactId>
                            <version>${project.version}</version>
                        </bundledArtifact>
                        <bundledArtifact>
                            <groupId>com.atlassian.upm</groupId>
                            <artifactId>fake-mac-plugin</artifactId>
                            <version>${project.version}</version>
                        </bundledArtifact>
                        <bundledArtifact>
                            <groupId>com.atlassian.upm</groupId>
                            <artifactId>fake-pac-plugin</artifactId>
                            <version>${project.version}</version>
                        </bundledArtifact>
                        <bundledArtifact>
                            <groupId>com.atlassian.upm</groupId>
                            <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-not-reloadable</artifactId>
                            <version>${project.version}</version>
                        </bundledArtifact>
                        <bundledArtifact>
                            <groupId>com.atlassian.upm</groupId>
                            <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-bundled-confluence-scriptsready-plugin</artifactId>
                            <version>${project.version}</version>
                        </bundledArtifact>
                        <bundledArtifact>
                            <groupId>com.atlassian.upm</groupId>
                            <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-bundled</artifactId>
                            <version>${project.version}</version>
                        </bundledArtifact>
                        <bundledArtifact>
                            <groupId>com.atlassian.upm</groupId>
                            <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-bundled-rbp</artifactId>
                            <version>${project.version}</version>
                        </bundledArtifact>
                        <bundledArtifact>
                            <groupId>com.atlassian.upm</groupId>
                            <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-bundled-updatable</artifactId>
                            <version>${project.version}</version>
                        </bundledArtifact>
                        <bundledArtifact>
                            <groupId>com.atlassian.upm</groupId>
                            <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-system</artifactId>
                            <version>${project.version}</version>
                        </bundledArtifact>
                        <bundledArtifact>
                            <groupId>com.atlassian.upm</groupId>
                            <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-bundled-with-config</artifactId>
                            <version>${project.version}</version>
                        </bundledArtifact>
                        <!-- Plugin for a test to install, and the plugin doesn't have an update -->
                        <bundledArtifact>
                            <groupId>${project.groupId}</groupId>
                            <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-bundled-has-no-update</artifactId>
                            <version>${project.version}</version>
                        </bundledArtifact>
                        <bundledArtifact>
                            <groupId>com.atlassian.integrationtesting</groupId>
                            <artifactId>atlassian-integrationtesting-plugin</artifactId>
                            <version>${ait.version}</version>
                        </bundledArtifact>
                        <bundledArtifact>
                            <groupId>com.atlassian.upm</groupId>
                            <artifactId>atlassian-universal-plugin-manager-javascript-tests</artifactId>
                            <version>${project.version}</version>
                        </bundledArtifact>
                        <bundledArtifact>
                            <groupId>com.atlassian.upm</groupId>
                            <artifactId>upm-application-plugin-javascript-tests</artifactId>
                            <version>${project.version}</version>
                        </bundledArtifact>
                        <bundledArtifact>
                            <groupId>com.atlassian.qunit</groupId>
                            <artifactId>atlassian-qunit-plugin</artifactId>
                            <version>${atlassian.qunit.version}</version>
                        </bundledArtifact>
                        <bundledArtifact>
                            <groupId>${project.groupId}</groupId>
                            <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-flagged-as-system-required</artifactId>
                            <version>${project.version}</version>
                        </bundledArtifact>
                    </bundledArtifacts>
                    <products>
                        <!-- JIRA PRODUCT VERSIONS -->
                        <product>
                            <!-- the latest compatible/tested product version. see the parent pom.xml to update this product version. -->
                            <id>jira</id>
                            <version>${jira.version}</version>
                            <server>localhost</server> <!-- UPM-4843 - JIRA 7 data isn't configured with real hostname -->
                            <productDataPath>${basedir}/src/test/resources/jira/non-eval-license-jira-7-12.zip</productDataPath>
                            <output>${project.build.directory}/jira-${jira.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <applications>
                                <application>
                                    <applicationKey>jira-software</applicationKey>
                                    <version>${jira.version}</version>
                                </application>
                            </applications>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                            <pluginArtifacts>

                                <pluginArtifact>
                                    <groupId>com.atlassian.bundles</groupId>
                                    <artifactId>json-schema-validator-atlassian-bundle</artifactId>
                                    <version>${atlassian.json.schema.validator.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>role-based-licensing-plugin</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>upm-application-plugin</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>

                                <!-- unfortunately, we have to copy ALL the pluginArtifacts from the base config since they are not additive -->
        
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-updatable-requires-restart-1.0</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-license-checker</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <pluginArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>

                                <pluginArtifact>
                                    <groupId>com.atlassian.whisper</groupId>
                                    <artifactId>atlassian-whisper-plugin</artifactId>
                                    <version>${whisper.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.whisper</groupId>
                                    <artifactId>atlassian-whisper-backdoor-plugin</artifactId>
                                    <version>${whisper.version}</version>
                                </pluginArtifact>
                            </pluginArtifacts>
                        </product>
                        <product>
                            <!-- the latest compatible/tested product version with data center license. -->
                            <instanceId>jira-dc</instanceId>
                            <id>jira</id>
                            <version>${jira.version}</version>
                            <productDataPath>${basedir}/src/test/resources/jira/data-center-license-jira-7-7.zip</productDataPath>
                            <output>${project.build.directory}/jira-${jira.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <server>localhost</server> <!-- UPM-4843 - JIRA 7 data isn't configured with real hostname -->
                            <applications>
                                <application>
                                    <applicationKey>jira-software</applicationKey>
                                    <version>${jira.version}</version>
                                </application>
                            </applications>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                            <pluginArtifacts>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>role-based-licensing-plugin</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>upm-application-plugin</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>

                                <!-- unfortunately, we have to copy ALL the pluginArtifacts from the base config since they are not additive -->
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-updatable-requires-restart-1.0</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-license-checker</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <pluginArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                            </pluginArtifacts>
                        </product>
                        <product>
                            <instanceId>jira-v7.9</instanceId>
                            <id>jira</id>
                            <version>${jira79.version}</version>
                            <server>localhost</server> <!-- UPM-4843 - JIRA 7 data isn't configured with real hostname -->
                            <productDataPath>${basedir}/src/test/resources/jira/non-eval-license-jira-7-7.zip</productDataPath>
                            <output>${project.build.directory}/jira-${jira79.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <applications>
                                <application>
                                    <applicationKey>jira-software</applicationKey>
                                    <version>${jira79.version}</version>
                                </application>
                            </applications>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                            <pluginArtifacts>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>role-based-licensing-plugin</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>upm-application-plugin</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>

                                <!-- unfortunately, we have to copy ALL the pluginArtifacts from the base config since they are not additive -->
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-updatable-requires-restart-1.0</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-license-checker</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <pluginArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.whisper</groupId>
                                    <artifactId>atlassian-whisper-backdoor-plugin</artifactId>
                                    <version>${whisper.version}</version>
                                </pluginArtifact>
                            </pluginArtifacts>
                        </product>
                        <product>
                            <instanceId>jira-v7.10</instanceId>
                            <id>jira</id>
                            <version>${jira710.version}</version>
                            <server>localhost</server> <!-- UPM-4843 - JIRA 7 data isn't configured with real hostname -->
                            <productDataPath>${basedir}/src/test/resources/jira/non-eval-license-jira-7-7.zip</productDataPath>
                            <output>${project.build.directory}/jira-${jira710.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <applications>
                                <application>
                                    <applicationKey>jira-software</applicationKey>
                                    <version>${jira710.version}</version>
                                </application>
                            </applications>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                            <pluginArtifacts>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>role-based-licensing-plugin</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>upm-application-plugin</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>

                                <!-- unfortunately, we have to copy ALL the pluginArtifacts from the base config since they are not additive -->
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-updatable-requires-restart-1.0</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-license-checker</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <pluginArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.whisper</groupId>
                                    <artifactId>atlassian-whisper-backdoor-plugin</artifactId>
                                    <version>${whisper.version}</version>
                                </pluginArtifact>
                            </pluginArtifacts>
                        </product>
                        <product>
                            <instanceId>jira-v7.11</instanceId>
                            <id>jira</id>
                            <version>${jira711.version}</version>
                            <server>localhost</server> <!-- UPM-4843 - JIRA 7 data isn't configured with real hostname -->
                            <productDataPath>${basedir}/src/test/resources/jira/non-eval-license-jira-7-7.zip</productDataPath>
                            <output>${project.build.directory}/jira-${jira711.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <applications>
                                <application>
                                    <applicationKey>jira-software</applicationKey>
                                    <version>${jira711.version}</version>
                                </application>
                            </applications>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                            <pluginArtifacts>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>role-based-licensing-plugin</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>upm-application-plugin</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>

                                <!-- unfortunately, we have to copy ALL the pluginArtifacts from the base config since they are not additive -->
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-updatable-requires-restart-1.0</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-license-checker</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <pluginArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.whisper</groupId>
                                    <artifactId>atlassian-whisper-backdoor-plugin</artifactId>
                                    <version>${whisper.version}</version>
                                </pluginArtifact>
                            </pluginArtifacts>
                        </product>
                        <product>
                            <instanceId>jira-v7.12</instanceId>
                            <id>jira</id>
                            <version>${jira712.version}</version>
                            <server>localhost</server> <!-- UPM-4843 - JIRA 7 data isn't configured with real hostname -->
                            <productDataPath>${basedir}/src/test/resources/jira/non-eval-license-jira-7-12.zip</productDataPath>
                            <output>${project.build.directory}/jira-${jira712.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <applications>
                                <application>
                                    <applicationKey>jira-software</applicationKey>
                                    <version>${jira712.version}</version>
                                </application>
                            </applications>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                            <pluginArtifacts>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>role-based-licensing-plugin</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>upm-application-plugin</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>

                                <!-- unfortunately, we have to copy ALL the pluginArtifacts from the base config since they are not additive -->
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-updatable-requires-restart-1.0</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-license-checker</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <pluginArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.whisper</groupId>
                                    <artifactId>atlassian-whisper-backdoor-plugin</artifactId>
                                    <version>${whisper.version}</version>
                                </pluginArtifact>
                            </pluginArtifacts>
                        </product>
                        <product>
                            <instanceId>jira-v7.13</instanceId>
                            <id>jira</id>
                            <version>${jira713.version}</version>
                            <server>localhost</server> <!-- UPM-4843 - JIRA 7 data isn't configured with real hostname -->
                            <productDataPath>${basedir}/src/test/resources/jira/non-eval-license-jira-7-12.zip</productDataPath>
                            <output>${project.build.directory}/jira-${jira713.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <applications>
                                <application>
                                    <applicationKey>jira-software</applicationKey>
                                    <version>${jira713.version}</version>
                                </application>
                            </applications>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                            <pluginArtifacts>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>role-based-licensing-plugin</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>upm-application-plugin</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>

                                <!-- unfortunately, we have to copy ALL the pluginArtifacts from the base config since they are not additive -->
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-updatable-requires-restart-1.0</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-license-checker</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <pluginArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.whisper</groupId>
                                    <artifactId>atlassian-whisper-backdoor-plugin</artifactId>
                                    <version>${whisper.version}</version>
                                </pluginArtifact>
                            </pluginArtifacts>
                        </product>

                        <!-- CONFLUENCE PRODUCT VERSIONS -->
                        <product>
                            <!-- the latest compatible/tested product version. see the parent pom.xml to update this product version. -->
                            <id>confluence</id>
                            <version>${confluence.version}</version>
                            <containerId>tomcat7x</containerId>
                            <server>localhost</server>
                            <productDataPath>${basedir}/src/test/resources/confluence/non-eval-license-confluence-6-12.zip</productDataPath>
                            <output>${project.build.directory}/confluence-${confluence.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                                <!-- confluence has libArtifacts show up as User Installed and pluginArtifacts as System -->
                                <libArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                            <pluginArtifacts>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>role-based-licensing-plugin</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>

                                <!-- unfortunately, we have to copy ALL the pluginArtifacts from the base config since they are not additive -->

                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-updatable-requires-restart-1.0</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-license-checker</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <pluginArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                            </pluginArtifacts>
                        </product>
                        <product>
                            <instanceId>confluence-v6.8</instanceId>
                            <id>confluence</id>
                            <version>${confluence68.version}</version>
                            <containerId>tomcat7x</containerId>
                            <server>localhost</server>
                            <productDataPath>${basedir}/src/test/resources/confluence/non-eval-license-confluence-6-6.zip</productDataPath>
                            <output>${project.build.directory}/confluence-${confluence68.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                                <!-- confluence has libArtifacts show up as User Installed and pluginArtifacts as System -->
                                <libArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                            <pluginArtifacts>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>role-based-licensing-plugin</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>

                                <!-- unfortunately, we have to copy ALL the pluginArtifacts from the base config since they are not additive -->
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-updatable-requires-restart-1.0</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-license-checker</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <pluginArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                            </pluginArtifacts>
                        </product>
                        <product>
                            <instanceId>confluence-v6.9</instanceId>
                            <id>confluence</id>
                            <version>${confluence69.version}</version>
                            <containerId>tomcat7x</containerId>
                            <server>localhost</server>
                            <productDataPath>${basedir}/src/test/resources/confluence/non-eval-license-confluence-6-6.zip</productDataPath>
                            <output>${project.build.directory}/confluence-${confluence69.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                                <!-- confluence has libArtifacts show up as User Installed and pluginArtifacts as System -->
                                <libArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                            <pluginArtifacts>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>role-based-licensing-plugin</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>

                                <!-- unfortunately, we have to copy ALL the pluginArtifacts from the base config since they are not additive -->
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-updatable-requires-restart-1.0</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-license-checker</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <pluginArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                            </pluginArtifacts>
                        </product>
                        <product>
                            <instanceId>confluence-v6.10</instanceId>
                            <id>confluence</id>
                            <version>${confluence610.version}</version>
                            <containerId>tomcat7x</containerId>
                            <server>localhost</server>
                            <productDataPath>${basedir}/src/test/resources/confluence/non-eval-license-confluence-6-6.zip</productDataPath>
                            <output>${project.build.directory}/confluence-${confluence610.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                                <!-- confluence has libArtifacts show up as User Installed and pluginArtifacts as System -->
                                <libArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                            <pluginArtifacts>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>role-based-licensing-plugin</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>

                                <!-- unfortunately, we have to copy ALL the pluginArtifacts from the base config since they are not additive -->
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-updatable-requires-restart-1.0</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-license-checker</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <pluginArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                            </pluginArtifacts>
                        </product>
                        <product>
                            <instanceId>confluence-v6.11</instanceId>
                            <id>confluence</id>
                            <version>${confluence611.version}</version>
                            <containerId>tomcat7x</containerId>
                            <server>localhost</server>
                            <productDataPath>${basedir}/src/test/resources/confluence/non-eval-license-confluence-6-6.zip</productDataPath>
                            <output>${project.build.directory}/confluence-${confluence611.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                                <!-- confluence has libArtifacts show up as User Installed and pluginArtifacts as System -->
                                <libArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                            <pluginArtifacts>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>role-based-licensing-plugin</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>

                                <!-- unfortunately, we have to copy ALL the pluginArtifacts from the base config since they are not additive -->
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-updatable-requires-restart-1.0</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-license-checker</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <pluginArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                            </pluginArtifacts>
                        </product>
                        <product>
                            <instanceId>confluence-v6.12</instanceId>
                            <id>confluence</id>
                            <version>${confluence612.version}</version>
                            <containerId>tomcat7x</containerId>
                            <server>localhost</server>
                            <productDataPath>${basedir}/src/test/resources/confluence/non-eval-license-confluence-6-12.zip</productDataPath>
                            <output>${project.build.directory}/confluence-${confluence612.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                                <!-- confluence has libArtifacts show up as User Installed and pluginArtifacts as System -->
                                <libArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                            <pluginArtifacts>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>role-based-licensing-plugin</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>

                                <!-- unfortunately, we have to copy ALL the pluginArtifacts from the base config since they are not additive -->
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-updatable-requires-restart-1.0</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-license-checker</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <pluginArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                            </pluginArtifacts>
                        </product>
                        <product>
                            <instanceId>confluence-v6.13</instanceId>
                            <id>confluence</id>
                            <version>${confluence613.version}</version>
                            <containerId>tomcat7x</containerId>
                            <server>localhost</server>
                            <productDataPath>${basedir}/src/test/resources/confluence/non-eval-license-confluence-6-12.zip</productDataPath>
                            <output>${project.build.directory}/confluence-${confluence613.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                                <!-- confluence has libArtifacts show up as User Installed and pluginArtifacts as System -->
                                <libArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                            <pluginArtifacts>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>role-based-licensing-plugin</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>

                                <!-- unfortunately, we have to copy ALL the pluginArtifacts from the base config since they are not additive -->
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-updatable-requires-restart-1.0</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-license-checker</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <pluginArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                            </pluginArtifacts>
                        </product>
                        <product>
                            <instanceId>confluence-v6.14</instanceId>
                            <id>confluence</id>
                            <version>${confluence614.version}</version>
                            <containerId>tomcat7x</containerId>
                            <server>localhost</server>
                            <productDataPath>${basedir}/src/test/resources/confluence/non-eval-license-confluence-6-12.zip</productDataPath>
                            <output>${project.build.directory}/confluence-${confluence614.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                                <!-- confluence has libArtifacts show up as User Installed and pluginArtifacts as System -->
                                <libArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                            <pluginArtifacts>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>role-based-licensing-plugin</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>

                                <!-- unfortunately, we have to copy ALL the pluginArtifacts from the base config since they are not additive -->
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-updatable-requires-restart-1.0</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-license-checker</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <pluginArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                            </pluginArtifacts>
                        </product>
                        <product>
                            <instanceId>confluence-v6.15</instanceId>
                            <id>confluence</id>
                            <version>${confluence615.version}</version>
                            <containerId>tomcat7x</containerId>
                            <server>localhost</server>
                            <productDataPath>${basedir}/src/test/resources/confluence/non-eval-license-confluence-6-12.zip</productDataPath>
                            <output>${project.build.directory}/confluence-${confluence615.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                                <!-- confluence has libArtifacts show up as User Installed and pluginArtifacts as System -->
                                <libArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                            <pluginArtifacts>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>role-based-licensing-plugin</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>

                                <!-- unfortunately, we have to copy ALL the pluginArtifacts from the base config since they are not additive -->
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-updatable-requires-restart-1.0</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-license-checker</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <pluginArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                            </pluginArtifacts>
                        </product>

                        <!-- REFAPP PRODUCT VERSIONS -->
                        <product>
                            <id>refapp</id>
                            <version>${refapp.version}</version>
                            <output>${project.build.directory}/refapp-${refapp.version}.log</output>
                            <pluginArtifacts>
                                <!-- Required for audit log feed -->
                                <pluginArtifact>
                                    <groupId>rome</groupId>
                                    <artifactId>rome</artifactId>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>org.jdom</groupId>
                                    <artifactId>com.springsource.org.jdom</artifactId>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-updatable-requires-restart-1.0</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-license-checker</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                            </pluginArtifacts>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                                <libArtifact>
                                    <groupId>joda-time</groupId>
                                    <artifactId>joda-time</artifactId>
                                    <version>${joda.time.version}</version>
                                </libArtifact>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <libArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                        </product>

                        <!-- BAMBOO PRODUCT VERSIONS -->
                        <product>
                            <!-- the latest compatible/tested product version. see the parent pom.xml to update this product version. -->
                            <id>bamboo</id>
                            <version>${bamboo.version}</version>
                            <containerId>tomcat8x</containerId>
                            <productDataPath>${basedir}/src/test/resources/bamboo/non-eval-license-bamboo-6-3.zip</productDataPath>
                            <output>${project.build.directory}/bamboo-${bamboo.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <libArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                        </product>
                        <product>
                            <instanceId>bamboo-v6.5</instanceId>
                            <id>bamboo</id>
                            <version>${bamboo65.version}</version>
                            <containerId>tomcat8x</containerId>
                            <productDataPath>${basedir}/src/test/resources/bamboo/non-eval-license-bamboo-6-3.zip</productDataPath>
                            <output>${project.build.directory}/bamboo-${bamboo65.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <libArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable
                                    </artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                        </product>
                        <product>
                            <instanceId>bamboo-v6.6</instanceId>
                            <id>bamboo</id>
                            <version>${bamboo66.version}</version>
                            <containerId>tomcat8x</containerId>
                            <productDataPath>${basedir}/src/test/resources/bamboo/non-eval-license-bamboo-6-3.zip</productDataPath>
                            <output>${project.build.directory}/bamboo-${bamboo66.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <libArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable
                                    </artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                        </product>
                        <product>
                            <instanceId>bamboo-v6.7</instanceId>
                            <id>bamboo</id>
                            <version>${bamboo67.version}</version>
                            <containerId>tomcat8x</containerId>
                            <productDataPath>${basedir}/src/test/resources/bamboo/non-eval-license-bamboo-6-3.zip</productDataPath>
                            <output>${project.build.directory}/bamboo-${bamboo67.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <libArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable
                                    </artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                        </product>
                        <product>
                            <instanceId>bamboo-v6.8</instanceId>
                            <id>bamboo</id>
                            <version>${bamboo68.version}</version>
                            <containerId>tomcat8x</containerId>
                            <productDataPath>${basedir}/src/test/resources/bamboo/non-eval-license-bamboo-6-3.zip</productDataPath>
                            <output>${project.build.directory}/bamboo-${bamboo68.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <libArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable
                                    </artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                        </product>
                        <product>
                            <instanceId>bamboo-v6.9</instanceId>
                            <id>bamboo</id>
                            <version>${bamboo69.version}</version>
                            <containerId>tomcat8x</containerId>
                            <productDataPath>${basedir}/src/test/resources/bamboo/non-eval-license-bamboo-6-3.zip</productDataPath>
                            <output>${project.build.directory}/bamboo-${bamboo69.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <libArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable
                                    </artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                        </product>
                        <product>
                            <instanceId>bamboo-v6.10</instanceId>
                            <id>bamboo</id>
                            <version>${bamboo610.version}</version>
                            <containerId>tomcat8x</containerId>
                            <productDataPath>${basedir}/src/test/resources/bamboo/non-eval-license-bamboo-6-3.zip</productDataPath>
                            <output>${project.build.directory}/bamboo-${bamboo610.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <libArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable
                                    </artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                        </product>

                        <!-- FECRU PRODUCT VERSIONS -->
                        <product>
                            <!-- the latest compatible/tested product version. see the parent pom.xml to update this product version. -->
                            <id>fecru</id>
                            <version>${fecru.version}</version>
                            <productDataPath>${basedir}/src/test/resources/fecru/non-eval-license.zip</productDataPath>
                            <output>${project.build.directory}/fecru-${fecru.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <pluginArtifacts>
                                <!-- Required for audit log feed -->
                                <pluginArtifact>
                                    <groupId>rome</groupId>
                                    <artifactId>rome</artifactId>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>org.jdom</groupId>
                                    <artifactId>com.springsource.org.jdom</artifactId>
                                </pluginArtifact>
                                <!-- Required for POE -->
                                <pluginArtifact>
                                    <groupId>com.atlassian.util.concurrent</groupId>
                                    <artifactId>atlassian-util-concurrent</artifactId>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-updatable-requires-restart-1.0</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-license-checker</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                            </pluginArtifacts>
                            <libArtifacts>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <libArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                        </product>
                        <product>
                            <instanceId>fecru-v4.6</instanceId>
                            <id>fecru</id>
                            <version>${fecru46.version}</version>
                            <productDataPath>${basedir}/src/test/resources/fecru/non-eval-license.zip</productDataPath>
                            <output>${project.build.directory}/fecru-${fecru46.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <pluginArtifacts>
                                <!-- Required for audit log feed -->
                                <pluginArtifact>
                                    <groupId>rome</groupId>
                                    <artifactId>rome</artifactId>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>org.jdom</groupId>
                                    <artifactId>com.springsource.org.jdom</artifactId>
                                </pluginArtifact>
                                <!-- Required for POE -->
                                <pluginArtifact>
                                    <groupId>com.atlassian.util.concurrent</groupId>
                                    <artifactId>atlassian-util-concurrent</artifactId>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-updatable-requires-restart-1.0</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-license-checker</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                            </pluginArtifacts>
                            <libArtifacts>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <libArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                        </product>
                        <product>
                            <instanceId>fecru-v4.7</instanceId>
                            <id>fecru</id>
                            <version>${fecru47.version}</version>
                            <productDataPath>${basedir}/src/test/resources/fecru/non-eval-license.zip</productDataPath>
                            <output>${project.build.directory}/fecru-${fecru47.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <pluginArtifacts>
                                <!-- Required for audit log feed -->
                                <pluginArtifact>
                                    <groupId>rome</groupId>
                                    <artifactId>rome</artifactId>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>org.jdom</groupId>
                                    <artifactId>com.springsource.org.jdom</artifactId>
                                </pluginArtifact>
                                <!-- Required for POE -->
                                <pluginArtifact>
                                    <groupId>com.atlassian.util.concurrent</groupId>
                                    <artifactId>atlassian-util-concurrent</artifactId>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-updatable-requires-restart-1.0</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v2-license-checker</artifactId>
                                    <version>${project.version}</version>
                                </pluginArtifact>
                            </pluginArtifacts>
                            <libArtifacts>
                                <!-- This plugin is required because a test needs it, but it can't be installed by the test because it is v1 -->
                                <libArtifact>
                                    <groupId>${project.groupId}</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-installable</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                        </product>

                        <!-- BITBUCKET PRODUCT VERSIONS -->
                        <product>
                            <!-- the latest compatible/tested product version. see the parent pom.xml to update this product version. -->
                            <id>bitbucket</id>
                            <version>${bitbucket.version}</version>
                            <containerId>tomcat8x</containerId>
                            <productDataPath>${basedir}/src/test/resources/bitbucket/non-eval-license-bitbucket-5-7.zip</productDataPath>
                            <output>${project.build.directory}/bitbucket-${bitbucket.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                        </product>
                        <product>
                            <instanceId>bitbucket-v5.9</instanceId>
                            <id>bitbucket</id>
                            <version>${bitbucket59.version}</version>
                            <containerId>tomcat8x</containerId>
                            <productDataPath>${basedir}/src/test/resources/bitbucket/non-eval-license-bitbucket-5-7.zip</productDataPath>
                            <output>${project.build.directory}/bitbucket-${bitbucket59.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                        </product>
                        <product>
                            <instanceId>bitbucket-v5.10</instanceId>
                            <id>bitbucket</id>
                            <version>${bitbucket510.version}</version>
                            <containerId>tomcat8x</containerId>
                            <productDataPath>${basedir}/src/test/resources/bitbucket/non-eval-license-bitbucket-5-7.zip</productDataPath>
                            <output>${project.build.directory}/bitbucket-${bitbucket510.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                        </product>
                        <product>
                            <instanceId>bitbucket-v5.11</instanceId>
                            <id>bitbucket</id>
                            <version>${bitbucket511.version}</version>
                            <containerId>tomcat8x</containerId>
                            <productDataPath>${basedir}/src/test/resources/bitbucket/non-eval-license-bitbucket-5-7.zip</productDataPath>
                            <output>${project.build.directory}/bitbucket-${bitbucket511.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                        </product>
                        <product>
                            <instanceId>bitbucket-v5.12</instanceId>
                            <id>bitbucket</id>
                            <version>${bitbucket512.version}</version>
                            <containerId>tomcat8x</containerId>
                            <productDataPath>${basedir}/src/test/resources/bitbucket/non-eval-license-bitbucket-5-7.zip</productDataPath>
                            <output>${project.build.directory}/bitbucket-${bitbucket512.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                        </product>
                        <product>
                            <instanceId>bitbucket-v5.13</instanceId>
                            <id>bitbucket</id>
                            <version>${bitbucket513.version}</version>
                            <containerId>tomcat8x</containerId>
                            <productDataPath>${basedir}/src/test/resources/bitbucket/non-eval-license-bitbucket-5-7.zip</productDataPath>
                            <output>${project.build.directory}/bitbucket-${bitbucket513.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                        </product>
                        <product>
                            <instanceId>bitbucket-v5.14</instanceId>
                            <id>bitbucket</id>
                            <version>${bitbucket514.version}</version>
                            <containerId>tomcat8x</containerId>
                            <productDataPath>${basedir}/src/test/resources/bitbucket/non-eval-license-bitbucket-5-7.zip</productDataPath>
                            <output>${project.build.directory}/bitbucket-${bitbucket514.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                        </product>
                        <product>
                            <instanceId>bitbucket-v5.15</instanceId>
                            <id>bitbucket</id>
                            <version>${bitbucket515.version}</version>
                            <containerId>tomcat8x</containerId>
                            <productDataPath>${basedir}/src/test/resources/bitbucket/non-eval-license-bitbucket-5-7.zip</productDataPath>
                            <output>${project.build.directory}/bitbucket-${bitbucket515.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                        </product>
                        <product>
                            <instanceId>bitbucket-v5.16</instanceId>
                            <id>bitbucket</id>
                            <version>${bitbucket516.version}</version>
                            <containerId>tomcat8x</containerId>
                            <productDataPath>${basedir}/src/test/resources/bitbucket/non-eval-license-bitbucket-5-7.zip</productDataPath>
                            <output>${project.build.directory}/bitbucket-${bitbucket516.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                        </product>

                        <!-- CROWD PRODUCT VERSIONS -->
                        <product>
                            <!-- the latest compatible/tested product version. see the parent pom.xml to update this product version. -->
                            <id>crowd</id>
                            <version>${crowd.version}</version>
                            <productDataPath>${basedir}/src/test/resources/crowd/non-eval-license-crowd-3-6.zip</productDataPath>
                            <output>${project.build.directory}/crowd-${crowd.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                        </product>
                        <product>
                            <instanceId>crowd-v3.7</instanceId>
                            <id>crowd</id>
                            <version>${crowd37.version}</version>
                            <productDataPath>${basedir}/src/test/resources/crowd/non-eval-license-crowd-3-6.zip</productDataPath>
                            <output>${project.build.directory}/crowd-${crowd37.version}.log</output>
                            <enableDevToolbox>${enableSdkTools}</enableDevToolbox>
                            <enablePde>${enableSdkTools}</enablePde>
                            <libArtifacts>
                                <libArtifact>
                                    <groupId>com.atlassian.upm</groupId>
                                    <artifactId>atlassian-universal-plugin-manager-test-plugin-v1-classpath</artifactId>
                                    <version>${project.version}</version>
                                </libArtifact>
                            </libArtifacts>
                        </product>
                    </products>
                    <testGroups>
                        <testGroup>
                            <id>jira</id>
                            <productIds>
                                <productId>jira</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>jira-v7.9</id>
                            <productIds>
                                <productId>jira-v7.9</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>jira-v7.10</id>
                            <productIds>
                                <productId>jira-v7.10</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>jira-v7.11</id>
                            <productIds>
                                <productId>jira-v7.11</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>jira-v7.12</id>
                            <productIds>
                                <productId>jira-v7.12</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>jira-v7.13</id>
                            <productIds>
                                <productId>jira-v7.13</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>confluence</id>
                            <productIds>
                                <productId>confluence</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>confluence-v6.8</id>
                            <productIds>
                                <productId>confluence-v6.8</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>confluence-v6.9</id>
                            <productIds>
                                <productId>confluence-v6.9</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>confluence-v6.10</id>
                            <productIds>
                                <productId>confluence-v6.10</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>confluence-v6.11</id>
                            <productIds>
                                <productId>confluence-v6.11</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>confluence-v6.12</id>
                            <productIds>
                                <productId>confluence-v6.12</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>confluence-v6.13</id>
                            <productIds>
                                <productId>confluence-v6.13</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>confluence-v6.14</id>
                            <productIds>
                                <productId>confluence-v6.14</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>confluence-v6.15</id>
                            <productIds>
                                <productId>confluence-v6.15</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>fecru</id>
                            <productIds>
                                <productId>fecru</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>fecru-v4.6</id>
                            <productIds>
                                <productId>fecru-v4.6</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>fecru-v4.7</id>
                            <productIds>
                                <productId>fecru-v4.7</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>bamboo</id>
                            <productIds>
                                <productId>bamboo</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>bamboo-v6.5</id>
                            <productIds>
                                <productId>bamboo-v6.5</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>bamboo-v6.6</id>
                            <productIds>
                                <productId>bamboo-v6.6</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>bamboo-v6.7</id>
                            <productIds>
                                <productId>bamboo-v6.7</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>bamboo-v6.8</id>
                            <productIds>
                                <productId>bamboo-v6.8</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>bamboo-v6.9</id>
                            <productIds>
                                <productId>bamboo-v6.9</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>bamboo-v6.10</id>
                            <productIds>
                                <productId>bamboo-v6.10</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>bitbucket</id>
                            <productIds>
                                <productId>bitbucket</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>bitbucket-v5.9</id>
                            <productIds>
                                <productId>bitbucket-v5.9</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>bitbucket-v5.10</id>
                            <productIds>
                                <productId>bitbucket-v5.10</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>bitbucket-v5.11</id>
                            <productIds>
                                <productId>bitbucket-v5.11</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>bitbucket-v5.12</id>
                            <productIds>
                                <productId>bitbucket-v5.12</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>bitbucket-v5.13</id>
                            <productIds>
                                <productId>bitbucket-v5.13</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>bitbucket-v5.14</id>
                            <productIds>
                                <productId>bitbucket-v5.14</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>bitbucket-v5.15</id>
                            <productIds>
                                <productId>bitbucket-v5.15</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>bitbucket-v5.16</id>
                            <productIds>
                                <productId>bitbucket-v5.16</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>crowd</id>
                            <productIds>
                                <productId>crowd</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                        <testGroup>
                            <id>crowd-v3.7</id>
                            <productIds>
                                <productId>crowd-v3.7</productId>
                            </productIds>
                            <includes>
                                <include>${testIncludes}</include>
                            </includes>
                        </testGroup>
                    </testGroups>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-dependency-plugin</artifactId>
                <executions>
                    <execution>
                        <!-- These files are used to test uploading jars from the local filesystem. -->
                        <id>copy-plugins-to-local-dir</id>
                        <phase>process-test-resources</phase>
                        <goals>
                            <goal>copy-dependencies</goal>
                        </goals>
                        <configuration>
                            <outputDirectory>${project.build.testOutputDirectory}/test-jars</outputDirectory>
                            <includeArtifactIds>atlassian-universal-plugin-manager-plugin,atlassian-universal-plugin-manager-test-plugin-v2-installable,atlassian-universal-plugin-manager-test-plugin-v1-nonbundled</includeArtifactIds>
                            <stripVersion>true</stripVersion>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

    <profiles>
        <profile>
            <id>ui</id>
            <properties>
                <!-- run ui tests without integration tests -->
                <testIncludes>it/**/uitests/**/*Test.java</testIncludes>
                <upm.disable.websudo>true</upm.disable.websudo>
            </properties>
        </profile>
        <profile>
            <id>allTests</id>
            <properties>
                <!-- run both integration tests and ui tests -->
                <testIncludes>it/**/*Test.java</testIncludes>
                <upm.disable.websudo>true</upm.disable.websudo>
            </properties>
        </profile>
        <profile>
            <id>allTestGroups</id>
            <properties>
                <testGroups>${jiraTestGroups},${confluenceTestGroups},${bitbucketTestGroups},${bambooTestGroups},${fecruTestGroups},${crowdTestGroups}</testGroups>
            </properties>
        </profile>
    </profiles>
    <properties>
        <testGroups>jira,confluence,bitbucket,bamboo,fecru,crowd</testGroups>
        <bambooTestGroups>bamboo-v6.5,bamboo-v6.6,bamboo-v6.7,bamboo-v6.8,bamboo-v6.9,bamboo-v6.10</bambooTestGroups>
        <bitbucketTestGroups>bitbucket-v5.9,bitbucket-v5.10,bitbucket-v5.11,bitbucket-v5.12,bitbucket-v5.13,bitbucket-v5.14,bitbucket-v5.15,bitbucket-v5.16</bitbucketTestGroups>
        <confluenceTestGroups>confluence-v6.8,confluence-v6.9,confluence-v6.10,confluence-v6.11,confluence-v6.12,confluence-v6.13,confluence-v6.14,confluence-v6.15</confluenceTestGroups>
        <crowdTestGroups>crowd-v3.7</crowdTestGroups>
        <fecruTestGroups>fecru-v4.6,fecru-v4.7</fecruTestGroups>
        <jiraTestGroups>jira-v7.9,jira-v7.10,jira-v7.11,jira-v7.12,jira-v7.13</jiraTestGroups>
        <project.root.dir>${basedir}/..</project.root.dir>
        <upm.plugin.resources>${project.root.dir}/upm-application-plugin/src/main/resources,${project.root.dir}/licensing-parent/role-based-licensing-plugin/src/main/resources,${project.root.dir}/plugin-installer-plugin/src/main/resources,${project.root.dir}/atlassian-universal-plugin-manager-plugin/src/main/resources,${project.root.dir}/atlassian-universal-plugin-manager-test-resources/atlassian-universal-plugin-manager-javascript-tests/src/main/resources,${project.root.dir}/atlassian-universal-plugin-manager-test-resources/upm-application-plugin-javascript-tests/src/main/resources</upm.plugin.resources>
        <upm.plugin.name>atlassian-universal-plugin-manager-plugin</upm.plugin.name>
        <testIncludes>it/**/integrationtests/**/*Test.java</testIncludes> <!-- run integration tests without ui tests by default -->
        <testIncludesStoragePlugin>it/**/PluginLicenseStoragePlugin*IntegrationTest.java</testIncludesStoragePlugin>
        <upm16.version>1.6.3</upm16.version>
        <upm.disable.websudo>false</upm.disable.websudo>
        <whisper.version>1.0.27</whisper.version>
    </properties>
</project>
