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 11:00:09 UTC

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

slawekjaranowski commented on a change in pull request #169:
URL: https://github.com/apache/maven-dependency-plugin/pull/169#discussion_r748837146



##########
File path: src/main/java/org/apache/maven/plugins/dependency/analyze/AbstractAnalyzeMojo.java
##########
@@ -222,6 +222,18 @@
     @Parameter
     private String[] ignoredUnusedDeclaredDependencies = new String[0];
 
+    /**
+     * List of project packaging that will be ignored.
+     *
+     * <p>
+     * by default <b>pom</b> and <b>ear</b> are ignored.
+     * </p>
+     *
+     * @since 3.2.1
+     */
+    @Parameter
+    private List<String> ignoredPackagings = Arrays.asList( "pom", "ear" );

Review comment:
       - dock will be fixed.
   - Maven 3.2.5 is used on ASF jenkins ... so we need workaround ...
   - I prefer add new package with new issue and new PR - I don't want to change scope of this




-- 
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