We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b38c638 commit 26aa5b3Copy full SHA for 26aa5b3
src/main/java/org/apache/maven/plugins/gpg/GpgSignAttachedMojo.java
@@ -192,6 +192,12 @@ else if ( project.getAttachedArtifacts().isEmpty() )
192
193
File file = artifact.getFile();
194
195
+ if ( isExcluded( file.getPath() ) )
196
+ {
197
+ getLog().debug( "Skipping generation of signature for excluded " + file );
198
+ continue;
199
+ }
200
+
201
getLog().debug( "Generating signature for " + file );
202
203
File signature = signer.generateSignatureForArtifact( file );
0 commit comments