api / org.gradle.api.plugins.quality / JDepend / reports

reports

open fun reports(closure: Closure<Any>): JDependReports

Overrides Reporting.reports

Configures the reports to be generated by this task. The contained reports can be configured by name and closures. Example:

 jdependTask { reports { xml { destination "build/jdepend.xml" } } } 

Parameters

closure - The configuration

Return
The reports container

open fun reports(configureAction: Action<in JDependReports>): JDependReports

Overrides Reporting.reports

Configures the reports to be generated by this task. The contained reports can be configured by name and closures. Example:

 jdependTask { reports { xml { destination "build/jdepend.xml" } } } 

Parameters

configureAction - The configuration

Return
The reports container