diff --git a/build.gradle.kts b/build.gradle.kts index 7773799..6f8b172 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -49,10 +49,12 @@ changelog { } // Configure Gradle Kover Plugin - read more: https://github.com/Kotlin/kotlinx-kover#configuration -koverReport { - defaults { - xml { - onCheck = true +kover { + reports { + total { + xml { + onCheck = true + } } } } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index c66148e..2f05cdf 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -7,7 +7,7 @@ kotlin = "2.0.0" changelog = "2.2.0" gradleIntelliJPlugin = "1.17.3" qodana = "2024.1.5" -kover = "0.7.6" +kover = "0.8.0" [libraries] annotations = { group = "org.jetbrains", name = "annotations", version.ref = "annotations" }