| API Documentation: | GenerateBuildDashboard |
|---|
Note: This class is incubating and may change in a future version of Gradle.
Generates build dashboard report.
| Property | Description |
inputReportsFiles | Incubating A set of report files that will be aggregated by the generated report. |
reports | Incubating The reports to be generated by this task. |
Note: This property is incubating and may change in a future version of Gradle.
A set of report files that will be aggregated by the generated report.
BuildDashboardReports reports (read-only)
Note: This property is incubating and may change in a future version of Gradle.
The reports to be generated by this task.
| Block | Description |
reports | Incubating Configures the reports to be generated by this task. The contained reports can be configured by name and closures. |
Note: This script block is incubating and may change in a future version of Gradle.
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"
}
}
}- Delegates to:
BuildDashboardReportsfromreports
| Method | Description |
aggregate(reportings) | Incubating Configures which reportings are to be aggregated in the build dashboard report generated by this task. |
void aggregate(Reporting... reportings)
Reporting...Note: This method is incubating and may change in a future version of Gradle.
Configures which reportings are to be aggregated in the build dashboard report generated by this task.
buildDashboard {
aggregate codenarcMain, checkstyleMain
}