<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.atlassian.confluence</groupId>
        <artifactId>confluence-core</artifactId>
        <version>5.0-rotp8</version>
    </parent>

    <groupId>com.atlassian.confluence.cache</groupId>
    <artifactId>confluence-cache</artifactId>
    <packaging>pom</packaging>

    <name>Confluence Cache Subsystem</name>
    <description>Implementations of Confluence's caching layer</description>

    <modules>
        <module>confluence-cache-ehcache</module>
    </modules>

    <profiles>
        <profile>
            <!-- CONF-17943 some builds need to avoid depending on coherence. -->
            <id>cluster-profile</id>
            <activation>
                <property><name>!disable.cluster</name></property>
            </activation>
            <modules>
                <module>confluence-cache-coherence</module>
            </modules>
        </profile>
    </profiles>

    <dependencies>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
        </dependency>
        <dependency>
            <groupId>com.atlassian.confluence</groupId>
            <artifactId>confluence</artifactId>
            <version>${project.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
        </dependency>
    </dependencies>
</project>
