use of org.gradle.api.reporting.internal.BuildDashboardGenerator in project gradle by gradle.
the class GenerateBuildDashboard method run.
@TaskAction
void run() {
if (getReports().getHtml().isEnabled()) {
BuildDashboardGenerator generator = new BuildDashboardGenerator();
generator.render(getEnabledInputReports(), reports.getHtml().getEntryPoint());
} else {
setDidWork(false);
}
}
Aggregations