Skip to content

Commit

Permalink
fix: correct jacoco gradle config
Browse files Browse the repository at this point in the history
  • Loading branch information
MrExplode committed Oct 31, 2024
1 parent d5f7470 commit 270b277
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,12 @@ tasks.jacocoTestReport {
csv.required = false
}

afterEvaluate {
classDirectories.setFrom(files(classDirectories.files.map {
fileTree(it) {
exclude("ch/bildspur/artnet/**")
}
}))
}
}
classDirectories.setFrom(files(classDirectories.files.map {
fileTree(it) {
exclude("ch/bildspur/artnet/**")
}
}))

tasks.jacocoTestReport {
dependsOn(tasks.test)
}

Expand Down

0 comments on commit 270b277

Please sign in to comment.