public interface DependencyResolutionResult
| Modifier and Type | Method and Description |
|---|---|
java.util.List<java.lang.Exception> |
getCollectionErrors()
Gets the errors that occurred while building the dependency graph.
|
java.util.List<org.eclipse.aether.graph.Dependency> |
getDependencies()
Gets the transitive dependencies of the project that were not excluded by
DependencyResolutionRequest.getResolutionFilter(). |
org.eclipse.aether.graph.DependencyNode |
getDependencyGraph()
Gets the dependency graph of the project.
|
java.util.List<java.lang.Exception> |
getResolutionErrors(org.eclipse.aether.graph.Dependency dependency)
Gets the errors that occurred while resolving the specified dependency.
|
java.util.List<org.eclipse.aether.graph.Dependency> |
getResolvedDependencies()
Gets the dependencies that were successfully resolved.
|
java.util.List<org.eclipse.aether.graph.Dependency> |
getUnresolvedDependencies()
Gets the dependencies that could not be resolved.
|
org.eclipse.aether.graph.DependencyNode getDependencyGraph()
null if not available.java.util.List<org.eclipse.aether.graph.Dependency> getDependencies()
DependencyResolutionRequest.getResolutionFilter(). This list is a union of the results from
getResolvedDependencies() and getUnresolvedDependencies().null.java.util.List<org.eclipse.aether.graph.Dependency> getResolvedDependencies()
null.java.util.List<org.eclipse.aether.graph.Dependency> getUnresolvedDependencies()
null.java.util.List<java.lang.Exception> getCollectionErrors()
null.java.util.List<java.lang.Exception> getResolutionErrors(org.eclipse.aether.graph.Dependency dependency)
dependency - The dependency for which to retrieve the errors, must not be null.null.