This is an automated email from the ASF dual-hosted git repository.
csterling pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-samoa.git
The following commit(s) were added to refs/heads/master by this push:
new 90a62c2 Added checksum-maven-plugin to generate SHA-512 checksum
files.
90a62c2 is described below
commit 90a62c2875f96854e15cc967a819e46df92f460e
Author: csterling <[email protected]>
AuthorDate: Tue Feb 25 10:16:07 2020 +1300
Added checksum-maven-plugin to generate SHA-512 checksum files.
---
pom.xml | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/pom.xml b/pom.xml
index 7b77621..a0dea0c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -229,6 +229,24 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>net.nicoulaj.maven.plugins</groupId>
+ <artifactId>checksum-maven-plugin</artifactId>
+ <version>1.8</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>artifacts</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <algorithms>
+ <algorithm>SHA-512</algorithm>
+ </algorithms>
+ <attachChecksums>true</attachChecksums>
+ </configuration>
+ </plugin>
</plugins>
<pluginManagement>
<plugins>