You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by ta...@apache.org on 2018/03/07 14:43:11 UTC

[tika] branch master updated: TIKA-2600 -- remove md5 checksum, and switch sha-1 to sha-512 for release artifacts

This is an automated email from the ASF dual-hosted git repository.

tallison pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tika.git


The following commit(s) were added to refs/heads/master by this push:
     new 19017c9  TIKA-2600 -- remove md5 checksum, and switch sha-1 to sha-512 for release artifacts
19017c9 is described below

commit 19017c91b245ebd72fefe005cd67d3da68037cc5
Author: tballison <ta...@mitre.org>
AuthorDate: Wed Mar 7 09:43:00 2018 -0500

    TIKA-2600 -- remove md5 checksum, and switch sha-1 to sha-512 for release artifacts
---
 pom.xml | 15 ++++++---------
 1 file changed, 6 insertions(+), 9 deletions(-)

diff --git a/pom.xml b/pom.xml
index d4a9824..a3cd16d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -104,19 +104,16 @@
                         <include name="tika-eval/target/tika-eval-${project.version}.jar*" />
                       </fileset>
                     </copy>
-                    <checksum algorithm="MD5" fileext=".md5">
+                    <checksum algorithm="SHA-512" fileext=".sha512">
                       <fileset dir="${basedir}/target/${project.version}">
                         <include name="*.zip" />
                         <include name="*.?ar" />
                       </fileset>
                     </checksum>
-                    <checksum algorithm="SHA1" fileext=".sha">
-                      <fileset dir="${basedir}/target/${project.version}">
-                        <include name="*.zip" />
-                        <include name="*.?ar" />
-                      </fileset>
-                    </checksum>
-                    <checksum file="${basedir}/target/${project.version}/tika-${project.version}-src.zip" algorithm="SHA1" property="checksum" />
+                    <checksum
+                            file="${basedir}/target/${project.version}/tika-${project.version}-src.zip"
+                            algorithm="SHA-512"
+                            property="checksum" />
                     <echo file="${basedir}/target/vote.txt">
 From: ${username}@apache.org
 To: dev@tika.apache.org
@@ -129,7 +126,7 @@ A candidate for the Tika ${project.version} release is available at:
 The release candidate is a zip archive of the sources in:
   https://github.com/apache/tika/tree/{project.version}-rcN/
 
-The SHA1 checksum of the archive is
+The SHA-512 checksum of the archive is
   ${checksum}.
 
 In addition, a staged maven repository is available here:

-- 
To stop receiving notification emails like this one, please contact
tallison@apache.org.