Skip to content

Instantly share code, notes, and snippets.

@hertzsprung
Created May 5, 2012 17:35
Embed
What would you like to do?
Maven distribution management
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus snapshot repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<name>Sonatype Nexus release repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment