public interface DependencyResolutionResult
| Modifier and Type | Method and Description | 
|---|---|
| List<Exception> | getCollectionErrors()Gets the errors that occurred while building the dependency graph. | 
| List<Dependency> | getDependencies()Gets the transitive dependencies of the project that were not excluded by
  DependencyResolutionRequest.getResolutionFilter(). | 
| DependencyNode | getDependencyGraph()Gets the dependency graph of the project. | 
| List<Exception> | getResolutionErrors(Dependency dependency)Gets the errors that occurred while resolving the specified dependency. | 
| List<Dependency> | getResolvedDependencies()Gets the dependencies that were successfully resolved. | 
| List<Dependency> | getUnresolvedDependencies()Gets the dependencies that could not be resolved. | 
DependencyNode getDependencyGraph()
null if not available.List<Dependency> getDependencies()
DependencyResolutionRequest.getResolutionFilter(). This list is a union of the results from
 getResolvedDependencies() and getUnresolvedDependencies().null.List<Dependency> getResolvedDependencies()
null.List<Dependency> getUnresolvedDependencies()
null.List<Exception> getCollectionErrors()
null.List<Exception> getResolutionErrors(Dependency dependency)
dependency - The dependency for which to retrieve the errors, must not be null.null.Copyright © 2001–2014 The Apache Software Foundation. All rights reserved.