You need to write your Nexus repository information as the following.
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
<servers> | |
<server> | |
<id>Releases</id> | |
<username>your-username</username> | |
<password>your-password</password> | |
</server> | |
<server> | |
<id>Snapshots</id> | |
<username>your-username</username> | |
<password>your-password</password> | |
</server> | |
</servers> |
ID is defined at pom.xml as below.
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
<distributionManagement> | |
<repository> | |
<id>Releases</id> | |
<name>Release</name> | |
<url>http://localhost:8081/nexus/content/repositories/releases/</url> | |
</repository> | |
<snapshotRepository> | |
<id>Snapshots</id> | |
<name>Snapshot</name> | |
<url>http://localhost:8081/nexus/content/repositories/snapshots/</url> | |
</snapshotRepository> | |
</distributionManagement> |
No comments:
Post a Comment