-
-
Save vchavkov82/712f97627ed26c7c234db6e9b6f4391c to your computer and use it in GitHub Desktop.
Maven settings.xml Mirror Setup for Nexus
This file contains 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
<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