<settings 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/settings-1.0.0.xsd"> <localRepository>c:\\java\\m2-repository</localRepository> <servers> <server> <id>apache-maven-snapshots</id> <username>username</username> <privateKey>/path/to/private/key</privateKey> </server> <server> <id>apache-maven-test-builds</id> <username>username</username> <privateKey>/path/to/private/key</privateKey> </server> <server> <id>apache-site</id> <username>userid</username> <privateKey>/path/to/private/key</privateKey> </server> </servers> <profiles> <profile> <id>cargo-config</id> <properties> <!--cargo.tomcat5x.home>c:/java/apache-tomcat-5.5.15</cargo.tomcat5x.home--> <cargo.tomcat5x.home>c:/java/jakarta-tomcat-5.0.30</cargo.tomcat5x.home> <cargo.tomcat4x.home>c:/java/jakarta-tomcat-4.1.31</cargo.tomcat4x.home> </properties> </profile> </profiles> <activeProfiles> <activeProfile>cargo-config</activeProfile> </activeProfiles> </settings>