| API Documentation: | JacocoReport | 
|---|
Note: This class is incubating and may change in a future version of Gradle.
Task to generate HTML, Xml and CSV reports of Jacoco coverage data.
| Property | Description | 
| additionalClassDirs | Incubating Additional class dirs that coverage data should be reported for. | 
| additionalSourceDirs | Incubating Additional source dirs for the classes coverage data is being reported for. | 
| classDirectories | Incubating Source sets that coverage should be reported for. | 
| executionData | Incubating Collection of execution data files to analyze. | 
| jacocoClasspath | Incubating Classpath containing Jacoco classes for use by the task. | 
| reports | Incubating The reports to be generated by this task. | 
| sourceDirectories | Incubating Source sets that coverage should be reported for. | 
| Method | Description | 
| executionData(files) | Incubating Adds execution data files to be used during coverage analysis. | 
| executionData(tasks) | Incubating Adds execution data generated by a task to the list of those used during coverage analysis. Only tasks with a  | 
| executionData(tasks) | Incubating Adds execution data generated by the given tasks to the list of those used during coverage analysis. Only tasks with a  | 
| reports(configureAction) | Allow configuration of the report container by closure. | 
FileCollection additionalClassDirs
Note: This property is incubating and may change in a future version of Gradle.
Additional class dirs that coverage data should be reported for.
FileCollection additionalSourceDirs
Note: This property is incubating and may change in a future version of Gradle.
Additional source dirs for the classes coverage data is being reported for.
FileCollection classDirectories
Note: This property is incubating and may change in a future version of Gradle.
Source sets that coverage should be reported for.
FileCollection executionData
Note: This property is incubating and may change in a future version of Gradle.
Collection of execution data files to analyze.
FileCollection jacocoClasspath
Note: This property is incubating and may change in a future version of Gradle.
Classpath containing Jacoco classes for use by the task.
- Default with jacocoplugin:
- 
                    project.configurations.jacocoAnt
JacocoReportsContainer 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.
FileCollection sourceDirectories
Note: This property is incubating and may change in a future version of Gradle.
Source sets that coverage should be reported for.
void executionData(Object...
Object...Note: This method is incubating and may change in a future version of Gradle.
Adds execution data files to be used during coverage analysis.
void executionData(Task...
Task...Note: This method is incubating and may change in a future version of Gradle.
Adds execution data generated by a task to the list of those used during coverage analysis. Only tasks with a JacocoTaskExtension will be included; all others will be ignored.
void executionData(TaskCollection tasks)
Note: This method is incubating and may change in a future version of Gradle.
Adds execution data generated by the given tasks to the list of those used during coverage analysis. Only tasks with a JacocoTaskExtension will be included; all others will be ignored.
T reports(Action<? super T>
Action<? super T>Allow configuration of the report container by closure.
reports {
  html {
    enabled false
  }
  xml.destination "build/reports/myReport.xml"
}