Skip to content

Commit 2dc89de

Browse files
committed
reorder
1 parent 6e834da commit 2dc89de

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
@@ -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+
216229
tasks.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-
}

0 commit comments

Comments
 (0)