Groovy Documentation

org.gradle.api.artifacts.result
[Java] Interface ResolutionResult


@Incubating
public interface ResolutionResult

Contains the information about the resolution result. Gives access to the resolved dependency graph. In future it will contain more convenience methods and other useful information about the resolution results.


Method Summary
ResolvedModuleVersionResult getRoot()

Gives access to the resolved dependency graph.

 

Method Detail

getRoot

public ResolvedModuleVersionResult getRoot()
Gives access to the 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' uses it to render the dependency tree.
Returns:
the root of the resolved dependency graph


 

Gradle API 1.2-rc-1