slawekjaranowski commented on pull request #169:
URL: 
https://github.com/apache/maven-dependency-plugin/pull/169#issuecomment-968247190


   When we have default value, like:
   
   ```
    @Parameter( defaultValue = "pom,ear" )
    private List<String> ignoredPackagings = new ArrayList<>();
   ```
   
   In maven `3.2.5` this default value is used always and win with 
configuration for collection in pom.
   
   fixed to:
   
   ```
   @Parameter
   private List<String> ignoredPackagings = Arrays.asList( "pom", "ear" );
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to