Last active
August 29, 2015 14:20
-
-
Save legatoo/13c6693bc4d0496faae6 to your computer and use it in GitHub Desktop.
Maven Setting For Work
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<settings> | |
<profiles> | |
<profile> | |
<id>nexus</id> | |
<repositories> | |
<repository> | |
<id>local-repository</id> | |
<name>local private repository</name> | |
<url>http://10.64.12.230:8081/nexus/content/groups/public</url> | |
<releases> | |
<enabled>true</enabled> | |
</releases> | |
<snapshots> | |
<enabled>false</enabled> | |
</snapshots> | |
</repository> | |
</repositories> | |
<pluginRepositories> | |
<pluginRepository> | |
<id>local-plugin-repository</id> | |
<name>local private plugin repository</name> | |
<url>http://10.64.12.230:8081/nexus/content/groups/public</url> | |
<releases> | |
<enabled>true</enabled> | |
</releases> | |
<snapshots> | |
<enabled>false</enabled> | |
</snapshots> | |
</pluginRepository> | |
</pluginRepositories> | |
</profile> | |
<profile> | |
<id>nexus-snapshots</id> | |
<repositories> | |
<repository> | |
<id>nexus-snapshots</id> | |
<name>local private snapshots</name> | |
<url>http://10.64.12.230:8081/nexus/content/groups/public-snapshots</url> | |
</repository> | |
</repositories> | |
</profile> | |
<profile> | |
<id>restlet</id> | |
<repositories> | |
<repository> | |
<id>maven-restlet</id> | |
<name>Public online Restlet repository</name> | |
<url>http://maven.restlet.org</url> | |
</repository> | |
</repositories> | |
</profile> | |
</profiles> | |
<activeProfiles> | |
<activeProfile>nexus</activeProfile> | |
<activeProfile>nexus-snapshots</activeProfile> | |
<activeProfile>restlet</activeProfile> | |
</activeProfiles> | |
</settings> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment