Issue #2619: Use Nexus Staging Maven Plugin for release process

This commit is contained in:
Roman Ivanov 2015-12-24 09:34:30 -08:00
parent a707819ab7
commit 0db81f33e1
1 changed files with 14 additions and 0 deletions

14
pom.xml
View File

@ -579,6 +579,20 @@
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.6</version>
<extensions>true</extensions>
<configuration>
<!-- serverId is ID of a <server> section from Maven's settings.xml
to pick authentication information from
-->
<serverId>sonatype-nexus-staging</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>