| API Documentation: | GenerateBuildDashboard | 
|---|
Note: This class is incubating and may change in a future version of Gradle.
Generates build dashboard report.
| Property | Description | 
| reports | Incubating 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. | 
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.
void aggregate(Reporting<? extends ReportContainer<?>>...
Reporting<? extends ReportContainer<?>>...Note: This method is incubating and may change in a future version of Gradle.
Configures which reports are to be aggregated in the build dashboard report generated by this task.
buildDashboard {
  aggregate codenarcMain, checkstyleMain
}
BuildDashboardReports reports(Action<? super BuildDashboardReports>
Action<? super BuildDashboardReports>Note: This method 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"
    }
  }
}
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:
- BuildDashboardReportsfrom- reports