You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@crail.apache.org by pe...@apache.org on 2018/10/26 10:36:38 UTC

[2/2] incubator-crail git commit: [Build] Generate checksum files

[Build] Generate checksum files

Generate checksum SHA-512 files for release tarballs.

https://jira.apache.org/jira/projects/CRAIL/issues/CRAIL-56

Signed-off-by: Jonas Pfefferle <pe...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/incubator-crail/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-crail/commit/fe2c8961
Tree: http://git-wip-us.apache.org/repos/asf/incubator-crail/tree/fe2c8961
Diff: http://git-wip-us.apache.org/repos/asf/incubator-crail/diff/fe2c8961

Branch: refs/heads/master
Commit: fe2c896112ce86e8f3de0bc32159d7f02ce7cb7d
Parents: 5e7d93d
Author: Jonas Pfefferle <pe...@apache.org>
Authored: Thu Oct 25 15:50:02 2018 +0200
Committer: Jonas Pfefferle <pe...@apache.org>
Committed: Thu Oct 25 16:05:42 2018 +0200

----------------------------------------------------------------------
 assembly/pom.xml | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/fe2c8961/assembly/pom.xml
----------------------------------------------------------------------
diff --git a/assembly/pom.xml b/assembly/pom.xml
index 0a8e7a8..c9eb9bf 100644
--- a/assembly/pom.xml
+++ b/assembly/pom.xml
@@ -147,6 +147,23 @@
           </execution>
         </executions>
       </plugin>
+     <plugin>
+        <groupId>net.ju-n.maven.plugins</groupId>
+        <artifactId>checksum-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>artifacts</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <algorithms>
+            <algorithm>SHA-512</algorithm>
+          </algorithms>
+          <failOnError>false</failOnError>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
 </project>