From 53709d19236031f00708b6c338577c0d2dc4994f Mon Sep 17 00:00:00 2001
From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com>
Date: Sat, 16 Sep 2017 20:45:04 -0400
Subject: [PATCH] build(build plugin): added nexus staging plugin.

---
 CHANGELOG.md |  3 +++
 pom.xml      | 12 ++++++++++--
 2 files changed, 13 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index dd003aee..de56c80b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,9 @@
 
 ## 3.1.1
 
+* Added nexus staging deployment plugin.
+* Removed explicit version from licensing plugin.
+
 ## 3.1.0
 
 * Added abstraction code for tinkerpop transactions which ease usage of transactions within ferma.
diff --git a/pom.xml b/pom.xml
index a1f10ee4..7187be3d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -228,16 +228,24 @@
             <plugin>
                 <groupId>org.jacoco</groupId>
                 <artifactId>jacoco-maven-plugin</artifactId>
-
             </plugin>
             <plugin>
                 <groupId>com.mycila.maven-license-plugin</groupId>
                 <artifactId>maven-license-plugin</artifactId>
-                <version>1.10.b1</version>
                 <configuration>
                     <skipExistingHeaders>false</skipExistingHeaders>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.sonatype.plugins</groupId>
+                <artifactId>nexus-staging-maven-plugin</artifactId>
+                <extensions>true</extensions>
+                <configuration>
+                    <serverId>ossrh</serverId>
+                    <nexusUrl>https://oss.sonatype.org/</nexusUrl>
+                    <autoReleaseAfterClose>true</autoReleaseAfterClose>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 
-- 
GitLab