You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2018/03/31 15:37:11 UTC

[maven-gpg-plugin] 01/01: [MGPG-64] - Exclude sha256/sha512

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

khmarbaise pushed a commit to branch MGPG-64
in repository https://gitbox.apache.org/repos/asf/maven-gpg-plugin.git

commit a2501d5fa302f7f3a2d5aaf1d0dfd45a7987e429
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Sat Mar 31 17:36:52 2018 +0200

    [MGPG-64] - Exclude sha256/sha512
---
 src/main/java/org/apache/maven/plugin/gpg/GpgSignAttachedMojo.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/maven/plugin/gpg/GpgSignAttachedMojo.java b/src/main/java/org/apache/maven/plugin/gpg/GpgSignAttachedMojo.java
index eccc716..0887ce4 100644
--- a/src/main/java/org/apache/maven/plugin/gpg/GpgSignAttachedMojo.java
+++ b/src/main/java/org/apache/maven/plugin/gpg/GpgSignAttachedMojo.java
@@ -48,7 +48,7 @@ public class GpgSignAttachedMojo
     extends AbstractGpgMojo
 {
 
-    private static final String DEFAULT_EXCLUDES[] = new String[] { "**/*.md5", "**/*.sha1", "**/*.asc" };
+    private static final String DEFAULT_EXCLUDES[] = new String[] { "**/*.md5", "**/*.sha1", "**/*.sha256", "**/*.sha512", "**/*.asc" };
 
     /**
      * Skip doing the gpg signing.

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