Skip to content

Commit d065149

Browse files
committed
Update Kover to 0.5.0
1 parent ff80ba2 commit d065149

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

buildSrc/build.gradle.kts

+5-1
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,9 @@ dependencies {
6060
exclude(group = "org.jetbrains.kotlin", module = "kotlin-stdlib")
6161
}
6262
implementation("ru.vyarus:gradle-animalsniffer-plugin:1.5.3") // Android API check
63-
implementation("org.jetbrains.kotlinx:kover:${version("kover")}")
63+
implementation("org.jetbrains.kotlinx:kover:${version("kover")}") {
64+
exclude(group = "org.jetbrains.kotlin", module = "kotlin-stdlib-jdk8")
65+
exclude(group = "org.jetbrains.kotlin", module = "kotlin-stdlib-jdk7")
66+
exclude(group = "org.jetbrains.kotlin", module = "kotlin-stdlib")
67+
}
6468
}

buildSrc/src/main/kotlin/kover-conventions.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ val expectedCoverage = mutableMapOf(
1515

1616
// Re-evaluate this along with Kover update where deprecated with error+ functions are not considered as uncovered: IDEA-287459
1717
"kotlinx-coroutines-reactor" to 65,
18-
"kotlinx-coroutines-rx2" to 78
18+
"kotlinx-coroutines-rx2" to 83
1919
)
2020

2121
extensions.configure<KoverExtension> {

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ rxjava3_version=3.0.2
2323
javafx_version=11.0.2
2424
javafx_plugin_version=0.0.8
2525
binary_compatibility_validator_version=0.8.0
26-
kover_version=0.5.0-RC2
26+
kover_version=0.5.0
2727
blockhound_version=1.0.2.RELEASE
2828
jna_version=5.9.0
2929

0 commit comments

Comments
 (0)