From d961f5dbf699a97351ec4de54790f3c60dc950d4 Mon Sep 17 00:00:00 2001 From: Oliver Gierke Date: Thu, 31 Mar 2016 17:22:06 +0200 Subject: [PATCH] #235 - Added configuration to deploy releases to Maven Central. Declared the GPG plugin and the Nexus Staging plugin to the "central" profile. --- pom.xml | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/pom.xml b/pom.xml index 9c413622..5322df06 100644 --- a/pom.xml +++ b/pom.xml @@ -96,19 +96,82 @@ + + org.jfrog.buildinfo artifactory-maven-plugin false + + + + central + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.5 + + + sign-artifacts + verify + + sign + + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.7 + true + + sonatype + https://oss.sonatype.org/ + false + + + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + + org.sonatype.plugins + nexus-staging-maven-plugin + + + + + + + + + sonatype + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + +