Dec 5, 2012

Configuration of maven files to deploy to Nexus(Sonatype Nexus)

When I make a new Jenkins server, I always get a trouble with deploying module to Nexus. This memo  is just for me from future. Because I know I will search it again.

You need to write your Nexus repository information as the following.
<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>
view raw settings.xml hosted with ❤ by GitHub


ID is defined at pom.xml as below.

<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>
view raw pom.xml hosted with ❤ by GitHub

No comments: