slawekjaranowski commented on a change in pull request #169:
URL:
https://github.com/apache/maven-dependency-plugin/pull/169#discussion_r748863820
##########
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:
Now look like standard defaults

--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]