Skip to content

Instantly share code, notes, and snippets.

@kuhnroyal
Created February 2, 2015 15:12
Show Gist options
  • Select an option

  • Save kuhnroyal/db90a3f7d800e7c656e1 to your computer and use it in GitHub Desktop.

Select an option

Save kuhnroyal/db90a3f7d800e7c656e1 to your computer and use it in GitHub Desktop.
maven
<?xml version="1.0"?>
<settings>
<servers>
<server>
<id>nexus</id>
<username>user</username>
<password>*******</password>
</server>
</servers>
<mirrors>
<mirror>
<id>nexus</id>
<mirrorOf>external:*</mirrorOf>
<url>https://nexus/content/groups/public</url>
</mirror>
</mirrors>
<profiles>
<profile>
<id>development</id>
<repositories>
<repository>
<id>central</id>
<url>http://central</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<url>http://central</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>development</activeProfile>
</activeProfiles>
</settings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment