<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>

    <packaging>jar</packaging>

    <groupId>m3.resource.filtering</groupId>
    <artifactId>repro</artifactId>
    <version>1.0.0-SNAPSHOT</version>

    <name>M3 Resource Filtering Problem Repro</name>

    <properties>
        <sablib-unittest-database-host>localhost</sablib-unittest-database-host>
        <sablib-unittest-database-port>1521</sablib-unittest-database-port>
        <sablib-unittest-database-server>sabrixdb</sablib-unittest-database-server>
        <hibernate-support-unittest-database-username>wibble</hibernate-support-unittest-database-username>
        <hibernate-support-unittest-database-password>giblets</hibernate-support-unittest-database-password>
    </properties>

    <build>
        <testResources>
            <testResource>
                <directory>src/test/resources</directory>
                <filtering>true</filtering>
            </testResource>
        </testResources>

        <pluginManagement>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-resources-plugin</artifactId>
                    <version>2.4.3</version>
                </plugin>
            </plugins>
        </pluginManagement>
    </build>

</project>

