Skip to content

Commit

Permalink
fixing jacoco reports for gradle 8
Browse files Browse the repository at this point in the history
  • Loading branch information
andiwg committed Mar 15, 2024
1 parent 0951393 commit 30ff9a7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gradle/jacoco.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ if(project.hasProperty('jacoco')) {
executionData.setFrom(project.fileTree(".") { include("**/build/jacoco/test.exec") })

reports {
html.enabled = true
xml.enabled = true
csv.enabled = false
html.required = true
xml.required = true
csv.required = false
xml.destination = "${buildDir}/reports/jacoco/report.xml" as File
}
}
Expand Down

0 comments on commit 30ff9a7

Please sign in to comment.