You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by re...@apache.org on 2017/11/10 12:05:19 UTC

svn commit: r1814831 - /jackrabbit/trunk/pom.xml

Author: reschke
Date: Fri Nov 10 12:05:19 2017
New Revision: 1814831

URL: http://svn.apache.org/viewvc?rev=1814831&view=rev
Log:
JCR-4212: add SHA512 checksums to releases

Modified:
    jackrabbit/trunk/pom.xml

Modified: jackrabbit/trunk/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/pom.xml?rev=1814831&r1=1814830&r2=1814831&view=diff
==============================================================================
--- jackrabbit/trunk/pom.xml (original)
+++ jackrabbit/trunk/pom.xml Fri Nov 10 12:05:19 2017
@@ -158,6 +158,12 @@
                         <include name="*.?ar" />
                       </fileset>
                     </checksum>
+                    <checksum algorithm="SHA-512" fileext=".sha512">
+                      <fileset dir="${basedir}/target/${project.version}">
+                        <include name="*.zip" />
+                        <include name="*.?ar" />
+                      </fileset>
+                    </checksum>
                     <checksum file="${basedir}/target/${project.version}/jackrabbit-${project.version}-src.zip" algorithm="SHA1" property="checksum" />
                     <echo file="${basedir}/target/vote.txt">
 From: ${username}@apache.org