File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff 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
3434Then 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+ 
3751Available tasks
3852--------- 
3953*  testScoverage - Executes all tests and creates Scoverage XML report with information about code coverage
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments