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 @@ -213,6 +213,19 @@ tasks.register('integrationTestsAll') {
213213 group = " Verification"
214214}
215215
216+ jacoco {
217+ reportsDirectory = file(" $buildDir /reports/jacoco" )
218+ }
219+
220+ jacocoTestReport {
221+ dependsOn test
222+ reports {
223+ xml. required = true // coveralls plugin depends on xml format report
224+ html. required = true
225+ }
226+ }
227+
228+
216229tasks. withType(JavaCompile ) {
217230 options. compilerArgs << " -Xlint:all"
218231
@@ -320,15 +333,3 @@ idea {
320333 testSourceDirs + = file(" src/intTest/java" )
321334 }
322335}
323-
324- jacoco {
325- reportsDirectory = file(" $buildDir /reports/jacoco" )
326- }
327-
328- jacocoTestReport {
329- dependsOn test
330- reports {
331- xml. required = true // coveralls plugin depends on xml format report
332- html. required = true
333- }
334- }
You can’t perform that action at this time.
0 commit comments