<?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/maven-v4_0_0.xsd">
    <parent>
        <groupId>org.n52.sensorweb.sos</groupId>
        <artifactId>hibernate</artifactId>
        <version>4.4.0-M6</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>hibernate-datasource</artifactId>
    <packaging>pom</packaging>
    <name>52°North SOS - Hibernate Datasources</name>
    <description>52°North Sensor Observation Service Hibernate datasource module</description>
    <modules>
        <module>postgres</module>
        <module>h2</module>
        <module>mysql</module>
        <module>common</module>
    </modules>
    <dependencies>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>api</artifactId>
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>hibernate-session-factory</artifactId>
        </dependency>
        <!-- Hibernate Core Dependencies -->
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-core</artifactId>
        </dependency>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-c3p0</artifactId>
        </dependency>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-spatial</artifactId>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-all</artifactId>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
        </dependency>
    </dependencies>
    <profiles>
        <profile>
            <id>oracle</id>
            <modules>
                <module>oracle</module>
            </modules>
        </profile>
        <profile>
            <id>sqlserver</id>
            <modules>
                <module>sqlserver</module>
            </modules>
        </profile>
    </profiles>
</project>
