Skip to content

Instantly share code, notes, and snippets.

@mnadeem
Created August 30, 2016 14:16
Show Gist options
  • Save mnadeem/3b10da6493a4fc00fbd7703b0079e47a to your computer and use it in GitHub Desktop.
Save mnadeem/3b10da6493a4fc00fbd7703b0079e47a to your computer and use it in GitHub Desktop.
maven gpg plugin as profile
<profiles>
<!-- GPG Signature on release -->
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment