Skip to content

Instantly share code, notes, and snippets.

@vchavkov82
Forked from matthewmccullough/settings.xml
Created May 25, 2020 18:25
Show Gist options
  • Save vchavkov82/712f97627ed26c7c234db6e9b6f4391c to your computer and use it in GitHub Desktop.
Save vchavkov82/712f97627ed26c7c234db6e9b6f4391c to your computer and use it in GitHub Desktop.
Maven settings.xml Mirror Setup for Nexus
<mirrors>
<mirror>
<!--This is used to direct the public snapshots repo in the profile below over to a different nexus group -->
<id>nexus-public-snapshots</id>
<mirrorOf>public-snapshots</mirrorOf>
<url>http://localhost:8081/nexus/content/groups/public-snapshots</url>
</mirror>
<mirror>
<!--This sends everything else to /public -->
<id>nexus-public-releases</id>
<mirrorOf>*</mirrorOf>
<url>http://localhost:8081/nexus/content/groups/public</url>
</mirror>
</mirrors>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment