You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2021/05/23 08:52:26 UTC

[maven-dependency-plugin] branch master updated: [MDEP-749] scope "threshold" term to summarise classpath in/ex-clusion

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

hboutemy 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 4211614  [MDEP-749] scope "threshold" term to summarise classpath in/ex-clusion
4211614 is described below

commit 4211614f4fead394430b6043b51df8808e2d850b
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Sun May 23 10:52:22 2021 +0200

    [MDEP-749] scope "threshold" term to summarise classpath in/ex-clusion
---
 .../fromDependencies/AbstractDependencyFilterMojo.java           | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/maven/plugins/dependency/fromDependencies/AbstractDependencyFilterMojo.java b/src/main/java/org/apache/maven/plugins/dependency/fromDependencies/AbstractDependencyFilterMojo.java
index d7ac299..b2d066b 100644
--- a/src/main/java/org/apache/maven/plugins/dependency/fromDependencies/AbstractDependencyFilterMojo.java
+++ b/src/main/java/org/apache/maven/plugins/dependency/fromDependencies/AbstractDependencyFilterMojo.java
@@ -122,8 +122,8 @@ public abstract class AbstractDependencyFilterMojo
     protected String excludeTypes;
 
     /**
-     * Scope to include. An empty string indicates include all dependencies (default).<br>
-     * The selected scope value being interpreted is the scope as
+     * Scope threshold to include. An empty string indicates include all dependencies (default).<br>
+     * The scope threshold value being interpreted is the scope as
      * Maven filters for creating a classpath, not as specified in the pom. In summary:
      * <ul>
      * <li><code>runtime</code> include scope gives runtime and compile dependencies,</li>
@@ -139,8 +139,9 @@ public abstract class AbstractDependencyFilterMojo
     protected String includeScope;
 
     /**
-     * Scope to exclude. An empty string indicates no dependencies (default).<br>
-     * The selected scope value being interpreted is the scope as
+     * Scope threshold to exclude, if no value is defined for include.
+     * An empty string indicates no dependencies (default).<br>
+     * The scope threshold value being interpreted is the scope as
      * Maven filters for creating a classpath, not as specified in the pom. In summary:
      * <ul>
      * <li><code>runtime</code> exclude scope excludes runtime and compile dependencies,</li>