api / org.gradle.api.reporting.dependents / DependentComponentsReport

DependentComponentsReport

@Incubating open class DependentComponentsReport : DefaultTask

Displays dependent components.

Constructors

<init>

DependentComponentsReport()

Displays dependent components.

Functions

getComponents

open fun getComponents(): MutableList<String>

Returns the components to generate the report for. Defaults to all components of this project.

getShowAll

open fun getShowAll(): Boolean

Should this include both non-buildable and test suites in the report?

isShowNonBuildable

open fun isShowNonBuildable(): Boolean

Should this include non-buildable components in the report?

isShowTestSuites

open fun isShowTestSuites(): Boolean

Should this include test suites in the report?

report

open fun report(): Unit

setComponents

open fun setComponents(components: MutableList<String>): Unit

Sets the components to generate the report for.

setShowAll

open fun setShowAll(showAll: Boolean): Unit

Set this to include both non buildable components and test suites in the report.

setShowNonBuildable

open fun setShowNonBuildable(showNonBuildable: Boolean): Unit

setShowTestSuites

open fun setShowTestSuites(showTestSuites: Boolean): Unit