File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
android/src/main/kotlin/com/project/starter/quality/internal
jvm/src/main/kotlin/com/project/starter/modules/internal
multiplatform/src/main/kotlin/com/project/starter/modules/internal Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ internal fun Project.configureAndroidCoverage(
18
18
pluginManager.apply (" jacoco" )
19
19
20
20
extensions.configure(JacocoPluginExtension ::class .java) {
21
- toolVersion = " 0.8.12 "
21
+ toolVersion = " 0.8.13 "
22
22
}
23
23
tasks.withType(Test ::class .java).configureEach {
24
24
extensions.getByType(JacocoTaskExtension ::class .java).apply {
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ internal fun Project.configureKotlinCoverage() {
17
17
}
18
18
}
19
19
extensions.configure(JacocoPluginExtension ::class .java) {
20
- toolVersion = " 0.8.12 "
20
+ toolVersion = " 0.8.13 "
21
21
}
22
22
tasks.named(" jacocoTestReport" , JacocoReport ::class .java) {
23
23
dependsOn(" test" )
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ internal fun Project.configureMultiplatformCoverage() {
18
18
}
19
19
20
20
extensions.configure(JacocoPluginExtension ::class .java) {
21
- toolVersion = " 0.8.12 "
21
+ toolVersion = " 0.8.13 "
22
22
}
23
23
tasks.register(" jacocoTestReport" , JacocoReport ::class .java) {
24
24
dependsOn(" jvmTest" )
You can’t perform that action at this time.
0 commit comments