From eedf3fa07f80009a864e5555682e89123a29192f Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com> Date: Thu, 26 Oct 2017 21:12:59 -0400 Subject: [PATCH] Renamed project. --- CHANGELOG.md | 8 +++++++- pom.xml | 28 ++++++++++++++++++++++------ 2 files changed, 29 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 35d9f0a..fede922 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ -# maven-mongodb-plugin Changelog +# mongodb-maven-plugin Changelog + +## 1.2.0 + +* Changed plugin name to mongodb-maven-plugin +* Added the nexus-staging-maven-plugin plugin. +* Moved maven-gpg-plugin to a profile. ## v1.1.1 diff --git a/pom.xml b/pom.xml index eb9d98e..c70abb9 100644 --- a/pom.xml +++ b/pom.xml @@ -24,11 +24,11 @@ <parent> <groupId>com.syncleus</groupId> <artifactId>syncleus</artifactId> - <version>2-SNAPSHOT</version> + <version>6-SNAPSHOT</version> </parent> <groupId>com.syncleus.maven.plugins</groupId> - <artifactId>maven-mongodb-plugin</artifactId> + <artifactId>mongodb-maven-plugin</artifactId> <version>1.2.0-SNAPSHOT</version> <packaging>maven-plugin</packaging> @@ -258,14 +258,14 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-gpg-plugin</artifactId> - </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> </plugin> + <plugin> + <groupId>org.sonatype.plugins</groupId> + <artifactId>nexus-staging-maven-plugin</artifactId> + </plugin> </plugins> </build> @@ -325,4 +325,20 @@ </plugins> </reporting> + <profiles> + <profile> + <id>sign</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-gpg-plugin</artifactId> + <configuration> + <keyname>8762A2BFD91F0468</keyname> + </configuration> + </plugin> + </plugins> + </build> + </profile> + </profiles> </project> -- GitLab