Skip to content

Commit

Permalink
Replace deprecated JacocoMerge task
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp94831 committed Feb 21, 2024
1 parent aa1efd7 commit 7a1f451
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sonar/src/main/kotlin/com/bakdata/gradle/SonarPlugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ class SonarPlugin : Plugin<Project> {
}))
classDirectories.from(files(subprojects.map { it.the<SourceSetContainer>()["main"].output }))
reports {
html.isEnabled = true
xml.isEnabled = true
csv.isEnabled = false
html.required.set(true)
xml.required.set(true)
csv.required.set(false)
}
}

Expand Down

0 comments on commit 7a1f451

Please sign in to comment.