Skip to content

Commit

Permalink
Verify dependency signatures during build (dropwizard#2667)
Browse files Browse the repository at this point in the history
  • Loading branch information
joschi authored Mar 14, 2019
1 parent 3830299 commit 38a750a
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 @@ -288,6 +288,7 @@
<properties>
<maven.javadoc.skip>true</maven.javadoc.skip>
<maven.source.skip>true</maven.source.skip>
<pgpverify.skip>true</pgpverify.skip>
</properties>
<build>
<plugins>
Expand Down Expand Up @@ -567,6 +568,11 @@
<artifactId>sphinx-maven-plugin</artifactId>
<version>2.3.1</version>
</plugin>
<plugin>
<groupId>org.simplify4u.plugins</groupId>
<artifactId>pgpverify-maven-plugin</artifactId>
<version>1.4.0</version>
</plugin>
</plugins>
</pluginManagement>

Expand Down Expand Up @@ -674,6 +680,21 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.simplify4u.plugins</groupId>
<artifactId>pgpverify-maven-plugin</artifactId>
<configuration>
<quiet>true</quiet>
<pgpKeyServer>hkps://keyserver.ubuntu.com</pgpKeyServer>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 38a750a

Please sign in to comment.