|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | PROPERTY | CONSTR | METHOD | DETAIL: FIELD | PROPERTY | CONSTR | METHOD |
java.lang.Objectorg.gradle.api.DefaultTask
org.ajoberstar.gradle.jacoco.tasks.JacocoBase
org.ajoberstar.gradle.jacoco.tasks.JacocoMerge
class JacocoMerge extends JacocoBase
Task to merge multiple execution data files into one.
Property Summary | |
---|---|
java.lang.Object |
destPath
Path to write merged execution data to. |
FileCollection |
executionData
Collection of execution data files to merge. |
Method Summary | |
---|---|
void
|
executionData(java.lang.Object... files)
Adds execution data files to be merged. |
void
|
executionData(Task... tasks)
Adds execution data generated by a task to the list of those to merge. |
void
|
executionData(TaskCollection tasks)
Adds execution data generated by the given tasks to the list of those merged. |
java.io.File
|
getDestFile()
Path to write merged execution daat to. |
void
|
merge()
|
Property Detail |
---|
java.lang.Object destPath
@InputFiles FileCollection executionData
Method Detail |
---|
void executionData(java.lang.Object... files)
files
- one or more files to merge
void executionData(Task... tasks)
tasks
- one or more tasks to merge
void executionData(TaskCollection tasks)
tasks
- one or more tasks to merge
@OutputFile java.io.File getDestFile()
@TaskAction void merge()
Groovy Documentation