<?xml version="1.0" encoding="UTF-8"?>
<settings>
    <profiles>
        <profile>
            <id>repos</id>
             <repositories>
        <repository>
            <id>codehaus</id>
            <name>codehaus</name>
            <url>http://repository.codehaus.org</url>
        </repository>
        <repository>
            <id>javanet</id>
            <name>java.net.m2</name>
            <url>http://download.java.net/maven/2</url>
        </repository>
        <repository>
            <id>repo1</id>
            <name>repo1</name>
            <url>http://repo1.maven.org/maven2</url>
        </repository>
    </repositories>
    </profile>

        <profile>
            <id>develop</id>
            <properties>
                <glassfish.home>/Applications/NetBeans/glassfish-v2ur2</glassfish.home>
                <hibernate.show_sql>true</hibernate.show_sql>
                <hibernate.hbm2ddl.auto>create-drop</hibernate.hbm2ddl.auto>
                <skip.tests>false</skip.tests>
            </properties>
        </profile>
        <profile>
            <id>test</id>
            <properties>
                <glassfish.home>/Applications/NetBeans/glassfish-v2ur2</glassfish.home>
                <hibernate.show_sql>false</hibernate.show_sql>
                <hibernate.hbm2ddl.auto>none</hibernate.hbm2ddl.auto>
                <!-- Since databsae isn't recreated the unit tests will fail-->
                <skip.tests>true</skip.tests>
            </properties>
        </profile>
    </profiles>
    <activeProfiles>
        <activeProfile>repos</activeProfile>
        <activeProfile>develop</activeProfile>
    </activeProfiles>

</settings>

