You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by el...@apache.org on 2020/05/18 20:01:47 UTC

[maven-dependency-plugin] branch master updated: don't care about old versions (#52)

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

elharo 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 b953aa0  don't care about old versions (#52)
b953aa0 is described below

commit b953aa0db5fde38e3befc32b6603e30bd80a2e9d
Author: Elliotte Rusty Harold <el...@users.noreply.github.com>
AuthorDate: Mon May 18 16:01:38 2020 -0400

    don't care about old versions (#52)
---
 .../org/apache/maven/plugins/dependency/analyze/AnalyzeDepMgt.java  | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/maven/plugins/dependency/analyze/AnalyzeDepMgt.java b/src/main/java/org/apache/maven/plugins/dependency/analyze/AnalyzeDepMgt.java
index b2c0ca9..b6c1264 100644
--- a/src/main/java/org/apache/maven/plugins/dependency/analyze/AnalyzeDepMgt.java
+++ b/src/main/java/org/apache/maven/plugins/dependency/analyze/AnalyzeDepMgt.java
@@ -41,10 +41,8 @@ import org.codehaus.plexus.util.StringUtils;
 
 /**
  * This mojo looks at the dependencies after final resolution and looks for mismatches in your dependencyManagement
- * section. In versions of maven prior to 2.0.6, it was possible to inherit versions that didn't match your
- * dependencyManagement. See <a href="https://issues.apache.org/jira/browse/MNG-1577">MNG-1577</a> for more info. This
- * mojo is also useful for just detecting projects that override the dependencyManagement directly. Set ignoreDirect to
- * false to detect these otherwise normal conditions.
+ * section. This mojo is also useful for detecting projects that override the dependencyManagement directly.
+ * Set ignoreDirect to false to detect these otherwise normal conditions.
  *
  * @author <a href="mailto:brianefox@gmail.com">Brian Fox</a>
  * @since 2.0-alpha-3