Skip to content

Commit

Permalink
Add gpg tool in parent pom (#380)
Browse files Browse the repository at this point in the history
  • Loading branch information
Novemser authored and birdstorm committed Jul 6, 2018
1 parent c5435bc commit 572a9e4
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -138,4 +138,25 @@
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!--GPG Signed Components-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<configuration>
<skip>${gpg.skip}</skip>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 572a9e4

Please sign in to comment.