Skip to content

Commit

Permalink
Use new JaCoCo syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
twyatt committed Feb 17, 2023
1 parent 3a7035d commit b156df5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gradle/jacoco.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
val jacocoTestReport by tasks.registering(JacocoReport::class) {
reports {
csv.isEnabled = false
html.isEnabled = true
xml.isEnabled = true
csv.required.set(false)
html.required.set(true)
xml.required.set(true)
}

classDirectories.setFrom(file("${buildDir}/classes/kotlin/jvm/main/"))
Expand Down

0 comments on commit b156df5

Please sign in to comment.