Interface ResolutionResult


  • @Incubating
    public interface ResolutionResult
    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.
    • Method Detail

      • getRoot

        ResolvedComponentResult getRoot()
        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.
        Returns:
        the root node of the resolved dependency graph
      • getAllDependencies

        Set<? extends DependencyResult> getAllDependencies()
        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.
        Returns:
        all dependencies, including unresolved dependencies.
      • allDependencies

        void allDependencies​(Action<? super DependencyResult> action)
        Applies given action for each dependency. An instance of DependencyResult is passed as parameter to the action.
        Parameters:
        action - - action that is applied for each dependency
      • allDependencies

        void allDependencies​(Closure closure)
        Applies given closure for each dependency. An instance of DependencyResult is passed as parameter to the closure.
        Parameters:
        closure - - closure that is applied for each dependency
      • allComponents

        void allComponents​(Action<? super ResolvedComponentResult> action)
        Applies given action for each component. An instance of ResolvedComponentResult is passed as parameter to the action.
        Parameters:
        action - - action that is applied for each component
      • allComponents

        void allComponents​(Closure closure)
        Applies given closure for each component. An instance of ResolvedComponentResult is passed as parameter to the closure.
        Parameters:
        closure - - closure that is applied for each component