Skip to content

Commit

Permalink
Jacoco 0.8.11 (#572)
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszkwiecinski authored Dec 25, 2023
1 parent d508750 commit 8c514e7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ internal fun Project.configureAndroidCoverage(
pluginManager.apply("jacoco")

extensions.configure(JacocoPluginExtension::class.java) {
it.toolVersion = "0.8.10"
it.toolVersion = "0.8.11"
}
tasks.withType(Test::class.java).configureEach {
it.extensions.getByType(JacocoTaskExtension::class.java).apply {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ internal fun Project.configureKotlinCoverage() {
}
}
extensions.configure(JacocoPluginExtension::class.java) {
it.toolVersion = "0.8.10"
it.toolVersion = "0.8.11"
}
tasks.named("jacocoTestReport", JacocoReport::class.java) {
it.dependsOn(":$path:test")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ internal fun Project.configureMultiplatformCoverage() {
}

extensions.configure(JacocoPluginExtension::class.java) {
it.toolVersion = "0.8.10"
it.toolVersion = "0.8.11"
}
tasks.register("jacocoTestReport", JacocoReport::class.java) {
it.dependsOn(":$path:jvmTest")
Expand Down

0 comments on commit 8c514e7

Please sign in to comment.