Skip to content

Commit

Permalink
Jacoco 0.8.12 (#616)
Browse files Browse the repository at this point in the history
* Update KotlinCoverage.kt

* Update MultiplatformCoverage.kt

* Update AndroidCoverage.kt
  • Loading branch information
mateuszkwiecinski authored Apr 2, 2024
1 parent 6f6f6e4 commit 33a78f5
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) {
toolVersion = "0.8.11"
toolVersion = "0.8.12"
}
tasks.withType(Test::class.java).configureEach {
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) {
toolVersion = "0.8.11"
toolVersion = "0.8.12"
}
tasks.named("jacocoTestReport", JacocoReport::class.java) {
dependsOn("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) {
toolVersion = "0.8.11"
toolVersion = "0.8.12"
}
tasks.register("jacocoTestReport", JacocoReport::class.java) {
dependsOn("jvmTest")
Expand Down

0 comments on commit 33a78f5

Please sign in to comment.