<profilesXml>
    <profiles>
    
        <profile>
            <id>skipunittest</id>
            <properties>
                <maven.test.skip>true</maven.test.skip>
            </properties>
        </profile>
        
        <profile>
            <id>production</id>
            <properties>
                <productionservername>myserver.com</productionservername>
                <basepath>/opt/tomcat/server/myapp</basepath>
            </properties>
        </profile>
        

        <profile>
            <id>test</id>
            <properties>
                <productionservername>mytestserver.com</productionservername>
                <basepath>/opt/tomcat/testserver/myapp</basepath>
            </properties>
        </profile>
        
    </profiles>
</profilesXml>


