Groovy Documentation

org.gradle.api.tasks.diagnostics
Interface DependencyReportRenderer

org.gradle.api.tasks.diagnostics.DependencyReportRenderer
  org.gradle.api.tasks.diagnostics.ProjectReportRenderer
All Superinterfaces:
ProjectReportRenderer

interface DependencyReportRenderer
extends ProjectReportRenderer

A DependencyReportRenderer is responsible for rendering the model of a project dependency report.

author:
Phil Messenger


Method Summary
void completeConfiguration(Configuration configuration)

Completes the rendering of the given configuration.

void render(ResolvedConfiguration resolvedConfiguration)

Writes the given dependency graph for the current configuration.

void startConfiguration(Configuration configuration)

Starts rendering the given configuration.

 
Methods inherited from interface ProjectReportRenderer
complete, completeProject, setOutputFile, startProject
 

Method Detail

completeConfiguration

public void completeConfiguration(Configuration configuration)
Completes the rendering of the given configuration.
param:
configuration The configuration


render

public void render(ResolvedConfiguration resolvedConfiguration)
Writes the given dependency graph for the current configuration.
param:
resolvedConfiguration The resolved configuration.


startConfiguration

public void startConfiguration(Configuration configuration)
Starts rendering the given configuration.
param:
configuration The configuration.


 

Groovy Documentation