Skip to content

Commit

Permalink
[MGPG-95] don't GPG-sign .sigstore signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
hboutemy committed Apr 25, 2023
1 parent 09b5be9 commit 0498a82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class FilesCollector {
private final MavenProject project;

private static final String DEFAULT_EXCLUDES[] =
new String[] {"**/*.md5", "**/*.sha1", "**/*.sha256", "**/*.sha512", "**/*.asc"};
new String[] {"**/*.md5", "**/*.sha1", "**/*.sha256", "**/*.sha512", "**/*.asc", "**/*.sigstore"};

private final String[] excludes;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class GpgSignAttachedMojo extends AbstractGpgMojo {

/**
* A list of files to exclude from being signed. Can contain Ant-style wildcards and double wildcards. The default
* excludes are <code>**&#47;*.md5 **&#47;*.sha1 **&#47;*.sha256 **&#47;*.sha512 **&#47;*.asc</code>.
* excludes are <code>**&#47;*.md5 **&#47;*.sha1 **&#47;*.sha256 **&#47;*.sha512 **&#47;*.asc **&#47;*.sigstore</code>.
*
* @since 1.0-alpha-4
*/
Expand Down

0 comments on commit 0498a82

Please sign in to comment.