Repository: incubator-gossip Updated Branches: refs/heads/master 3d0ccf52e -> 5352dc57f
Prepare changes for release Project: http://git-wip-us.apache.org/repos/asf/incubator-gossip/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-gossip/commit/5352dc57 Tree: http://git-wip-us.apache.org/repos/asf/incubator-gossip/tree/5352dc57 Diff: http://git-wip-us.apache.org/repos/asf/incubator-gossip/diff/5352dc57 Branch: refs/heads/master Commit: 5352dc57ff769c6b4c0a4f41235d34d9878e659e Parents: 3d0ccf5 Author: Edward Capriolo <[email protected]> Authored: Wed Nov 9 13:21:03 2016 -0500 Committer: Edward Capriolo <[email protected]> Committed: Wed Nov 9 13:21:03 2016 -0500 ---------------------------------------------------------------------- pom.xml | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-gossip/blob/5352dc57/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 581c8b1..0c5d4e2 100644 --- a/pom.xml +++ b/pom.xml @@ -29,11 +29,11 @@ <groupId>org.apache.gossip</groupId> <artifactId>gossip</artifactId> <name>gossip</name> - <version>0.1.0-incubating</version> + <version>0.1.0-incubating-SNAPSHOT</version> <packaging>jar</packaging> <description>A peer to peer cluster discovery service</description> <url>http://gossip.incubator.apache.org/</url> - + <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>1.8</java.version> @@ -136,6 +136,20 @@ <build> <pluginManagement> <plugins> + <!-- we need to tweak the maven-release-plugin for GIT --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-release-plugin</artifactId> + <version>2.5.1</version> + <configuration> + <pushChanges>false</pushChanges> + <localCheckout>true</localCheckout> + <autoVersionSubmodules>true</autoVersionSubmodules> + + <releaseProfiles>distribution</releaseProfiles> + <preparationGoals>clean install</preparationGoals> + </configuration> + </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId>
