Contains the information about the result of dependency resolution. You can use this type to determine all the component instances that are included in the resolved dependency graph, and the dependencies between them.
Type | Name and description |
---|---|
void |
allComponents(Action<? super ResolvedComponentResult> action) Applies given action for each component. |
void |
allComponents(Closure closure) Applies given closure for each component. |
void |
allDependencies(Action<? super DependencyResult> action) Applies given action for each dependency. |
void |
allDependencies(Closure closure) Applies given closure for each dependency. |
Set<ResolvedComponentResult> |
getAllComponents() Retrieves all instances of ResolvedComponentResult from the graph, e.g. all nodes of the dependency graph. |
Set<? extends DependencyResult> |
getAllDependencies() Retrieves all dependencies, including unresolved dependencies. |
ResolvedComponentResult |
getRoot() Gives access to the root of resolved dependency graph. |
Applies given action for each component. An instance of ResolvedComponentResult is passed as parameter to the action.
action
- - action that is applied for each componentApplies given closure for each component. An instance of ResolvedComponentResult is passed as parameter to the closure.
closure
- - closure that is applied for each componentApplies given action for each dependency. An instance of DependencyResult is passed as parameter to the action.
action
- - action that is applied for each dependencyApplies given closure for each dependency. An instance of DependencyResult is passed as parameter to the closure.
closure
- - closure that is applied for each dependencyRetrieves all instances of ResolvedComponentResult from the graph, e.g. all nodes of the dependency graph.
Retrieves all dependencies, including unresolved dependencies. Resolved dependencies are represented by instances of ResolvedDependencyResult, unresolved dependencies by UnresolvedDependencyResult. In dependency graph terminology, this method returns the edges of the graph.
Gives access to the root of resolved dependency graph. You can walk the graph recursively from the root to obtain information about resolved dependencies. For example, Gradle's built-in 'dependencies' task uses this to render the dependency tree.