Add nexus-staging-maven-plugin to ease deployment to maven central

This commit is contained in:
moparisthebest 2014-06-12 09:56:18 -04:00
parent c4b90ea36a
commit 0f334cd77f
1 changed files with 11 additions and 0 deletions

11
pom.xml
View File

@ -90,6 +90,17 @@
<debug>false</debug>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.2</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<profiles>