You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sj...@apache.org on 2022/08/27 15:07:04 UTC

[maven-dependency-plugin] branch master updated: [MDEP-714] Add missing 'since' to ignoreUnusedRuntime parameter

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 52a2ed8c [MDEP-714] Add missing 'since' to ignoreUnusedRuntime parameter
52a2ed8c is described below

commit 52a2ed8c8eeb52e83467cb36faec7382e09558b6
Author: Marcono1234 <Ma...@users.noreply.github.com>
AuthorDate: Sat Aug 27 16:09:33 2022 +0200

    [MDEP-714] Add missing 'since' to ignoreUnusedRuntime parameter
---
 .../apache/maven/plugins/dependency/analyze/AbstractAnalyzeMojo.java    | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/main/java/org/apache/maven/plugins/dependency/analyze/AbstractAnalyzeMojo.java b/src/main/java/org/apache/maven/plugins/dependency/analyze/AbstractAnalyzeMojo.java
index c421ab68..e069bd46 100644
--- a/src/main/java/org/apache/maven/plugins/dependency/analyze/AbstractAnalyzeMojo.java
+++ b/src/main/java/org/apache/maven/plugins/dependency/analyze/AbstractAnalyzeMojo.java
@@ -106,6 +106,8 @@ public abstract class AbstractAnalyzeMojo
 
     /**
      * Ignore Runtime scope for unused dependency analysis.
+     *
+     * @since 3.2.0
      */
     @Parameter( property = "ignoreUnusedRuntime", defaultValue = "false" )
     private boolean ignoreUnusedRuntime;