Created
May 26, 2021 14:44
-
-
Save jovemfelix/bb537c5ad5cf18abfe8136fb6548f047 to your computer and use it in GitHub Desktop.
Sample MAVEN SETTINGS
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
<?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