Skip to content

Commit

Permalink
ZOOKEEPER-3285 - add auto sha512 checksum generation for all maven ge…
Browse files Browse the repository at this point in the history
…nerated artifact
  • Loading branch information
nkalmar committed Feb 21, 2019
1 parent 915d530 commit 4e7b659
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions pom.xml
Expand Up @@ -522,6 +522,11 @@
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.0.0</version>
</plugin>
<plugin>
<groupId>net.nicoulaj.maven.plugins</groupId>
<artifactId>checksum-maven-plugin</artifactId>
<version>1.8</version>
</plugin>
<plugin>
<groupId>org.openclover</groupId>
<artifactId>clover-maven-plugin</artifactId>
Expand Down Expand Up @@ -660,6 +665,22 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>net.nicoulaj.maven.plugins</groupId>
<artifactId>checksum-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>artifacts</goal>
</goals>
</execution>
</executions>
<configuration>
<algorithms>
<algorithm>SHA-512</algorithm>
</algorithms>
</configuration>
</plugin>

<plugin>
<groupId>com.github.spotbugs</groupId>
Expand Down

0 comments on commit 4e7b659

Please sign in to comment.