Task to merge multiple execution data files into one.
Type | Name and description |
---|---|
File |
destinationFile File to write merged execution data to. |
FileCollection |
executionData Collection of execution data files to merge. |
Type | Name and description |
---|---|
void |
executionData(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. |
protected IsolatedAntBuilder |
getAntBuilder() |
void |
merge() |
File to write merged execution data to.
Collection of execution data files to merge.
Adds execution data files to be merged.
files
- one or more files to mergeAdds execution data generated by a task to the list of those to merge. Only tasks with a JacocoTaskExtension will be included; all others will be ignored.
tasks
- one or more tasks to mergeAdds execution data generated by the given tasks to the list of those merged. Only tasks with a JacocoTaskExtension will be included; all others will be ignored.
tasks
- one or more tasks to merge