From 1d595a9780b630bd7db87d2f599e7938990c0324 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Jun 2024 11:41:46 +0000 Subject: [PATCH 1/2] Bump org.jetbrains.kotlinx.kover from 0.7.6 to 0.8.1 Bumps [org.jetbrains.kotlinx.kover](https://github.com/Kotlin/kotlinx-kover) from 0.7.6 to 0.8.1. - [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.1) --- 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 18c12d7..53c50d8 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -7,7 +7,7 @@ kotlin = "1.9.23" changelog = "2.2.0" gradleIntelliJPlugin = "1.17.2" qodana = "0.1.13" -kover = "0.7.6" +kover = "0.8.1" [libraries] annotations = { group = "org.jetbrains", name = "annotations", version.ref = "annotations" } From 56e943570904caf97e82ada27bc6554c0beb71b8 Mon Sep 17 00:00:00 2001 From: orangain Date: Wed, 12 Jun 2024 23:53:20 +0900 Subject: [PATCH 2/2] Update kover plugin settings https://github.com/JetBrains/intellij-platform-plugin-template/pull/456/commits/c46eed131b5f2bed9ff7283550df7d9631c2d633 --- build.gradle.kts | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index bf00738..f8a8111 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -60,10 +60,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 + } } } }