You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by GitBox <gi...@apache.org> on 2021/11/14 08:32:48 UTC

[GitHub] [maven-dependency-plugin] slawekjaranowski commented on pull request #169: [MDEP-752] Add ignoredPackagings options for analyze

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-unsubscribe@maven.apache.org

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