GenerateBuildDashboard

API Documentation:GenerateBuildDashboard

Note: This class is incubating and may change in a future version of Gradle.

Generates build dashboard report.

Properties

PropertyDescription
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.

Property details

Set<File> inputReportsFiles (read-only)

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.

Script blocks

BlockDescription
reports
Incubating

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

Script block details

reports { }

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:
BuildDashboardReports from reports

Methods

MethodDescription
aggregate(reportings)
Incubating

Configures which reportings are to be aggregated in the build dashboard report generated by this task.

Method details

void aggregate(Reporting... reportings)

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
}