Created
November 8, 2023 15:04
-
-
Save jefrnc/e5cd53c6f6729d2f311ca22f056ca776 to your computer and use it in GitHub Desktop.
Nera 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
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd"> | |
<servers> | |
<server> | |
<id>nera-agro-nera-libs</id> | |
<username>aws</username> | |
<password>${env.CODEARTIFACT_AUTH_TOKEN}</password> | |
</server> | |
<server> | |
<id>nera-agro-nera-maven</id> | |
<username>aws</username> | |
<password>${env.CODEARTIFACT_AUTH_TOKEN}</password> | |
</server> | |
</servers> | |
<profiles> | |
<profile> | |
<id>nera-agro-nera-libs</id> | |
<activation> | |
<activeByDefault>true</activeByDefault> | |
</activation> | |
<repositories> | |
<repository> | |
<id>nera-agro-nera-libs</id> | |
<url>https://nera-agro-135956182433.d.codeartifact.us-east-1.amazonaws.com/maven/nera-libs/</url> | |
</repository> | |
</repositories> | |
</profile> | |
<profile> | |
<id>nera-agro-nera-maven</id> | |
<activation> | |
<activeByDefault>true</activeByDefault> | |
</activation> | |
<repositories> | |
<repository> | |
<id>nera-agro-nera-maven</id> | |
<url>https://nera-agro-135956182433.d.codeartifact.us-east-1.amazonaws.com/maven/nera-maven/</url> | |
</repository> | |
</repositories> | |
</profile> | |
</profiles> | |
</settings> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment