Skip to content

Commit a6e1368

Browse files
committed
update README for 1.0.8 release
1 parent 24f1a98 commit a6e1368

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

Diff for: README.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ buildscript {
1414
mavenCentral()
1515
}
1616
dependencies {
17-
classpath 'org.scoverage:gradle-scoverage:1.0.7'
17+
classpath 'org.scoverage:gradle-scoverage:1.0.8'
1818
}
1919
}
2020
@@ -34,6 +34,20 @@ This creates an additional task testCoverage which will run tests against instru
3434
Then launch command :
3535
`gradle testScoverage` or `gradle checkScoverage`
3636

37+
Aggregating Reports
38+
-------------------
39+
40+
There is now experimental support for aggregating coverage statistics across subprojects.
41+
42+
The project hosting the aggregation task **must** be configured as the sub-projects are;
43+
i.e. with the scoverage plugin applied and the scoverage dependencies configured.
44+
45+
```groovy
46+
task aggregateScoverage(type: org.scoverage.ScoverageAggregate)
47+
```
48+
49+
This will produce a report into _build_ / scoverage-aggregate
50+
3751
Available tasks
3852
---------
3953
* testScoverage - Executes all tests and creates Scoverage XML report with information about code coverage

0 commit comments

Comments
 (0)