Skip to content

Instantly share code, notes, and snippets.

@jovemfelix
Created May 26, 2021 14:44
Show Gist options
  • Save jovemfelix/bb537c5ad5cf18abfe8136fb6548f047 to your computer and use it in GitHub Desktop.
Save jovemfelix/bb537c5ad5cf18abfe8136fb6548f047 to your computer and use it in GitHub Desktop.
Sample MAVEN SETTINGS
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd">
<mirrors>
<mirror>
<id>nexus</id>
<mirrorOf>*</mirrorOf>
<url>http://NEXUS_URL/nexus/content/groups/my_public_group</url>
</mirror>
</mirrors>
<!-- <servers>-->
<!-- <server>-->
<!-- <id>deployment</id>-->
<!-- <username>my_username</username>-->
<!-- <password>my_password</password>-->
<!-- </server>-->
<!-- </servers>-->
</settings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment