Skip to content

Instantly share code, notes, and snippets.

@mnadeem
Created August 30, 2016 14:09
Show Gist options
  • Save mnadeem/2c3b32a7ac81d15212d1ddd424ee6817 to your computer and use it in GitHub Desktop.
Save mnadeem/2c3b32a7ac81d15212d1ddd424ee6817 to your computer and use it in GitHub Desktop.
Maven release plugin
<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