<?xml version="1.0"?>
<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.confluence</groupId>
        <artifactId>confluence-api</artifactId>
        <version>7.14.0-m94</version>
    </parent>

    <artifactId>confluence-api-test-support</artifactId>
    <name>Confluence API Test Support</name>
    <description>Test utilities which reference Confluence API. See also confluence-testutils.</description>

    <properties>
        <license.scope>test</license.scope>
    </properties>

    <dependencies>
        <dependency>
            <groupId>com.atlassian.confluence</groupId>
            <artifactId>confluence-java-api</artifactId>
        </dependency>
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
        </dependency>
        <dependency>
            <groupId>joda-time</groupId>
            <artifactId>joda-time</artifactId>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-core</artifactId>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>com.google.code.findbugs</groupId>
            <artifactId>findbugs-annotations</artifactId>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>com.atlassian.maven.plugins</groupId>
                <artifactId>api-compat-maven-plugin</artifactId>
                <configuration>
                    <suppressionsFile>${basedir}/src/test/etc/api-test-support-compat-suppressions.txt</suppressionsFile>
                    <includes>
                        <include>com.atlassian.confluence.api.testsupport.**</include>
                    </includes>
                    <excludes>
                        <exclude>com.atlassian.confluence.api.testsupport.internal.**</exclude>
                    </excludes>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>
