DependencyInsightReportTask

API Documentation:DependencyInsightReportTask

Note: This class is incubating and may change in a future version of Gradle.

Generates a report that attempts to answer questions like:

  • Why is this dependency in the dependency graph?
  • Exactly which dependencies are pulling this dependency into the graph?
  • What is the actual version (i.e. *selected* version) of the dependency that will be used? Is it the same as what was *requested*?
  • Why is the *selected* version of a dependency different to the *requested*?

Use this task to get insight into a particular dependency (or dependencies) and find out what exactly happens during dependency resolution and conflict resolution. If the dependency version was forced or selected by the conflict resolution this information will be available in the report.

While the regular dependencies report (DependencyReportTask) shows the path from the top level dependencies down through the transitive dependencies, the dependency insight report shows the path from a particular dependency to the dependencies that pulled it in. That is, it is an inverted view of the regular dependencies report.

The task requires setting the dependency spec and the configuration. For more information on how to configure those please refer to docs for DependencyInsightReportTask.setDependencySpec() and DependencyInsightReportTask.setConfiguration().

The task can also be configured from the command line. For more information please refer to DependencyInsightReportTask.setDependencySpec() and DependencyInsightReportTask.setConfiguration()

Properties

PropertyDescription
configuration
Incubating

Configuration to look the dependency in

dependencySpec
Incubating

Selects the dependency (or dependencies if multiple matches found) to show the report for.

Property details

Configuration configuration

Note: This property is incubating and may change in a future version of Gradle.

Configuration to look the dependency in

Default with java plugin:
compile configuration

Spec<DependencyResult> dependencySpec

Note: This property is incubating and may change in a future version of Gradle.

Selects the dependency (or dependencies if multiple matches found) to show the report for.

Default with java plugin:
-

Script blocks

No script blocks

Methods

No methods