Adopt commons-jcs way of generating SHA-512 checksums
This commit is contained in:
parent
af261c8fbf
commit
79adf78d23
39
pom.xml
39
pom.xml
|
@ -242,6 +242,45 @@ CSV files of various types.
|
||||||
</excludes>
|
</excludes>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
calculate checksums of release artifacts for Apache dist area
|
||||||
|
-->
|
||||||
|
<plugin>
|
||||||
|
<groupId>net.nicoulaj.maven.plugins</groupId>
|
||||||
|
<artifactId>checksum-maven-plugin</artifactId>
|
||||||
|
<version>1.7</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>generate.checksums</id>
|
||||||
|
<phase>verify</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>files</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
<configuration>
|
||||||
|
<algorithms>
|
||||||
|
<algorithm>SHA-512</algorithm>
|
||||||
|
</algorithms>
|
||||||
|
<csvSummary>false</csvSummary>
|
||||||
|
<fileSets>
|
||||||
|
<fileSet>
|
||||||
|
<directory>${project.build.directory}</directory>
|
||||||
|
<includes>
|
||||||
|
<include>${project.artifactId}-${project.version}-src.zip</include>
|
||||||
|
<include>
|
||||||
|
${project.artifactId}-${project.version}-src.tar.gz
|
||||||
|
</include>
|
||||||
|
<include>${project.artifactId}-${project.version}-bin.zip</include>
|
||||||
|
<include>
|
||||||
|
${project.artifactId}-${project.version}-bin.tar.gz
|
||||||
|
</include>
|
||||||
|
</includes>
|
||||||
|
</fileSet>
|
||||||
|
</fileSets>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue