File tree Expand file tree Collapse file tree 1 file changed +13
-12
lines changed
Expand file tree Collapse file tree 1 file changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -201,18 +201,6 @@ tasks.register('integrationTestsAll') {
201201 group = " Verification"
202202}
203203
204- jacoco {
205- toolVersion = " 0.8.10"
206- reportsDirectory = file(" $buildDir /reports/jacoco" )
207- }
208-
209- jacocoTestReport {
210- reports {
211- xml. required = true // coveralls plugin depends on xml format report
212- html. required = true
213- }
214- }
215-
216204tasks. withType(JavaCompile ) {
217205 options. compilerArgs << " -Xlint:all"
218206
@@ -342,3 +330,16 @@ idea {
342330 testSourceDirs + = file(" src/intTest/java" )
343331 }
344332}
333+
334+ jacoco {
335+ toolVersion = " 0.8.10"
336+ reportsDirectory = file(" $buildDir /reports/jacoco" )
337+ }
338+
339+ jacocoTestReport {
340+ dependsOn test
341+ reports {
342+ xml. required = true // coveralls plugin depends on xml format report
343+ html. required = true
344+ }
345+ }
You can’t perform that action at this time.
0 commit comments