Created
August 30, 2016 14:09
-
-
Save mnadeem/2c3b32a7ac81d15212d1ddd424ee6817 to your computer and use it in GitHub Desktop.
Maven release plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-release-plugin</artifactId> | |
<version>2.5.3</version> | |
<configuration> | |
<localCheckout>true</localCheckout> | |
<pushChanges>false</pushChanges> | |
<mavenExecutorId>forked-path</mavenExecutorId> | |
<arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments> | |
</configuration> | |
<dependencies> | |
<dependency> | |
<groupId>org.apache.maven.scm</groupId> | |
<artifactId>maven-scm-provider-gitexe</artifactId> | |
<version>1.9.5</version> | |
</dependency> | |
</dependencies> | |
</plugin> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment