mirror of https://github.com/apache/maven.git
o Clarified API docs
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-3/trunk@1069934 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5b8042b483
commit
9b83675025
|
@ -53,7 +53,9 @@ public interface DependencyResolutionRequest
|
|||
DependencyFilter getResolutionFilter();
|
||||
|
||||
/**
|
||||
* Sets the filter used to exclude some dependencies from resolution.
|
||||
* Sets the filter used to exclude some dependencies from resolution. Note that this filter only controls the
|
||||
* resolution/download of dependency artifacts, not the inclusion of dependency nodes in the resolved dependeny
|
||||
* graph.
|
||||
*
|
||||
* @param filter The filter to exclude dependencies from resolution, may be {@code null} to resolve all
|
||||
* dependencies.
|
||||
|
|
|
@ -40,8 +40,9 @@ public interface DependencyResolutionResult
|
|||
DependencyNode getDependencyGraph();
|
||||
|
||||
/**
|
||||
* Gets the transitive dependencies of the project that were not excluded by a filter, whether successfully resolved
|
||||
* or not.
|
||||
* Gets the transitive dependencies of the project that were not excluded by
|
||||
* {@link DependencyResolutionRequest#getResolutionFilter()}. This list is a union of the results from
|
||||
* {@link #getResolvedDependencies()} and {@link #getUnresolvedDependencies()}.
|
||||
*
|
||||
* @return The transitive dependencies, never {@code null}.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue