Skip to content
Snippets Groups Projects
Commit 75763723 authored by Matthew Dawson's avatar Matthew Dawson
Browse files

Add signing stage to pom.xml.

In preperation for a proper release, add a plugin to the pom file to
sign everything.
parent 76525f24
No related branches found
No related tags found
No related merge requests found
......@@ -170,6 +170,23 @@
</excludePackageNames>
</configuration>
</plugin>
<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>
<configuration>
<keyname>D16B88B9B969A4C78A4BE6C64725BF17E528FE9E</keyname>
</configuration>
</plugin>
</plugins>
</build>
<parent>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment