<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
        <groupId>com.atlassian.confluence</groupId>
        <artifactId>confluence-test</artifactId>
        <version>5.9.0-D20150623T065349</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <name>Confluence Stateless WebDriver Tests</name>
    <artifactId>confluence-stateless-webdriver-test</artifactId>

    <dependencies>
        <dependency>
            <groupId>com.atlassian.confluence</groupId>
            <artifactId>confluence-stateless-test-runner</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <properties>
        <skip.webdriver.test>true</skip.webdriver.test>
    </properties>

    <build>
        <testSourceDirectory>src/test/java</testSourceDirectory>
        <pluginManagement>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-surefire-plugin</artifactId>
                    <version>${surefire.version}</version>
                    <configuration>
                        <argLine>-noverify -XX:MaxPermSize=96M -Djava.awt.headless=true -Xmx384m</argLine>
                        <skip>${skip.webdriver.test}</skip>
                        <runOrder>alphabetical</runOrder>
                        <systemPropertyVariables>
                            <java.io.tmpdir>${java.io.tmpdir}</java.io.tmpdir>
                        </systemPropertyVariables>
                        <junitArtifactName>junit:junit-dep</junitArtifactName>
                    </configuration>
                </plugin>
            </plugins>
        </pluginManagement>
    </build>
</project>
