Skip to content

Instantly share code, notes, and snippets.

@bengolder
Created September 17, 2016 04:20
Show Gist options
  • Save bengolder/5900fb10b6decf5c87e457e7b3c9d196 to your computer and use it in GitHub Desktop.
Save bengolder/5900fb10b6decf5c87e457e7b3c9d196 to your computer and use it in GitHub Desktop.
The configuration for maven gpg plugin in a pom.xml
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment