You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sl...@apache.org on 2022/11/03 08:20:06 UTC

[maven-shade-plugin] branch master updated: (doc) Fix iterated collection

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

slachiewicz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-shade-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new 0dfd50c  (doc) Fix iterated collection
0dfd50c is described below

commit 0dfd50cc054ef58d53c6b2860dc1430d7c1db31c
Author: Piotrek Żygieło <pz...@users.noreply.github.com>
AuthorDate: Fri Oct 28 09:37:48 2022 +0200

    (doc) Fix iterated collection
---
 src/main/java/org/apache/maven/plugins/shade/mojo/ShadeMojo.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/maven/plugins/shade/mojo/ShadeMojo.java b/src/main/java/org/apache/maven/plugins/shade/mojo/ShadeMojo.java
index 10b1be2..edf46b3 100644
--- a/src/main/java/org/apache/maven/plugins/shade/mojo/ShadeMojo.java
+++ b/src/main/java/org/apache/maven/plugins/shade/mojo/ShadeMojo.java
@@ -785,7 +785,7 @@ public class ShadeMojo
         {
             getLog().warn( "Skipping empty test jar " + artifactId + "." );
         }
-        for ( String artifactId : emptyTestArtifacts )
+        for ( String artifactId : emptyTestSourceArtifacts )
         {
             getLog().warn( "Skipping empty test source jar " + artifactId + "." );
         }