You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2019/09/21 16:08:37 UTC

[maven-source-plugin] branch MSOURCES-120 updated: fixed Unix sha1 that changed with previous pom.xml update

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

hboutemy pushed a commit to branch MSOURCES-120
in repository https://gitbox.apache.org/repos/asf/maven-source-plugin.git


The following commit(s) were added to refs/heads/MSOURCES-120 by this push:
     new 87a23ad  fixed Unix sha1 that changed with previous pom.xml update
87a23ad is described below

commit 87a23ad7847aec1f78ff9c6625619b366390b4f5
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Sat Sep 21 18:08:34 2019 +0200

    fixed Unix sha1 that changed with previous pom.xml update
---
 src/it/reproducible/verify.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/it/reproducible/verify.groovy b/src/it/reproducible/verify.groovy
index 4949d13..83c352b 100644
--- a/src/it/reproducible/verify.groovy
+++ b/src/it/reproducible/verify.groovy
@@ -73,6 +73,6 @@ zipFile.close();
 String buf = r.toString()
 println buf
 
-String expectedSha1 = System.properties['os.name'].toLowerCase().contains( 'windows' ) ? 'c7ea4f558b19c78f65795b574fe9933b83b76b63' : 'e684ad3e646ea1088946fed5f18c3b63d64ea6d4'
+String expectedSha1 = System.properties['os.name'].toLowerCase().contains( 'windows' ) ? 'c7ea4f558b19c78f65795b574fe9933b83b76b63' : 'e6d0222375a93e4e3a8f2e139361d5925151c5bd'
 
 assert buf.startsWith( "reproducible-1.0-sources.jar sha1 = $expectedSha1" )