From fdecc0a70cf16c631cbca239eb22442a083e7a3a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 20:51:53 +0000 Subject: [PATCH 1/2] Bump org.jetbrains.kotlinx.kover from 0.7.6 to 0.8.2 Bumps [org.jetbrains.kotlinx.kover](https://github.com/Kotlin/kotlinx-kover) from 0.7.6 to 0.8.2. - [Release notes](https://github.com/Kotlin/kotlinx-kover/releases) - [Changelog](https://github.com/Kotlin/kotlinx-kover/blob/main/CHANGELOG.md) - [Commits](https://github.com/Kotlin/kotlinx-kover/compare/v0.7.6...v0.8.2) --- updated-dependencies: - dependency-name: org.jetbrains.kotlinx.kover dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 370aae1..0e5c4ea 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.4" qodana = "0.1.13" -kover = "0.7.6" +kover = "0.8.2" [libraries] annotations = { group = "org.jetbrains", name = "annotations", version.ref = "annotations" } From 1749d3f8d36906771844426147d06f7080ad65fa Mon Sep 17 00:00:00 2001 From: Artem Zatsarynnyi Date: Tue, 16 Jul 2024 14:06:52 +0200 Subject: [PATCH 2/2] Update Kover configuration --- build.gradle.kts | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 5fafe6b..080ee40 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -61,10 +61,12 @@ qodana { } // Configure Gradle Kover Plugin - read more: https://github.com/Kotlin/kotlinx-kover#configuration -koverReport { - defaults { - xml { - onCheck = true +kover { + reports { + total { + xml { + onCheck = true + } } } }