Skip to content

Commit d0fb850

Browse files
committed
change order
1 parent de6c0bc commit d0fb850

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

build.gradle

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff 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-
216204
tasks.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+
}

0 commit comments

Comments
 (0)