<?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>
        <artifactId>atlassian-user</artifactId>
        <groupId>com.atlassian.user</groupId>
        <version>4.0-m5</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <name>Atlassian User - Hibernate 3</name>

    <artifactId>atlassian-user-hibernate3</artifactId>

    <dependencies>
        <dependency>
            <groupId>com.atlassian.user</groupId>
            <artifactId>atlassian-user-api</artifactId>
        </dependency>
        <dependency>
            <groupId>com.atlassian.user</groupId>
            <artifactId>atlassian-user-core</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-orm</artifactId>
        </dependency>

        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate</artifactId>
        </dependency>

        <dependency>
            <groupId>com.opensymphony.propertyset</groupId>
            <artifactId>core</artifactId>
        </dependency>

        <dependency>
            <groupId>com.opensymphony.propertyset.providers</groupId>
            <artifactId>hibernate3</artifactId>
        </dependency>

        <!-- Test Dependencies -->
        <dependency>
            <groupId>com.atlassian.osuser</groupId>
            <artifactId>osuser-provider-hibernate3</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>com.atlassian.cache</groupId>
            <artifactId>atlassian-cache-memory</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>net.sf.ehcache</groupId>
            <artifactId>ehcache</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>com.atlassian.user</groupId>
            <artifactId>atlassian-user-test-common</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>hsqldb</groupId>
            <artifactId>hsqldb</artifactId>
        </dependency>

        <dependency>
            <groupId>javax.transaction</groupId>
            <artifactId>jta</artifactId>
            <scope>test</scope>
        </dependency>

    </dependencies>

</project>