@Incubating public class GenerateBuildDashboard extends DefaultTask
Generates build dashboard report.
Constructor and description |
---|
GenerateBuildDashboard
() |
Type | Name and description |
---|---|
void |
aggregate(Reporting<? extends ReportContainer<?>>... reportings) Configures which reports are to be aggregated in the build dashboard report generated by this task. |
Set<ReportState> |
getInputReports() |
protected Instantiator |
getInstantiator() |
BuildDashboardReports |
getReports() The reports to be generated by this task. |
BuildDashboardReports |
reports(Closure closure) Configures the reports to be generated by this task. |
Configures which reports are to be aggregated in the build dashboard report generated by this task.
buildDashboard { aggregate codenarcMain, checkstyleMain }
reportings
- an array of Reporting instances that are to be aggregatedThe reports to be generated by this task.
Configures the reports to be generated by this task. The contained reports can be configured by name and closures.
buildDashboard { reports { html { destination "build/dashboard.html" } } }
closure
- The configuration