diff --git a/CHANGELOG.md b/CHANGELOG.md index 45f45e3..27c35ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,10 +15,12 @@ - Dependencies - upgrade `org.jetbrains.intellij` to `1.14.1` - Dependencies - upgrade `org.jetbrains.changelog` to `2.1.0` - Dependencies - upgrade `org.jetbrains.kotlin.jvm` to `1.8.21` +- Dependencies - upgrade `org.jetbrains.kotlinx.kover` to `0.7.1` - Dependencies (GitHub Actions) - upgrade `JetBrains/qodana-action` to `v2023.1.0` - Upgrade Gradle Wrapper to `8.1.1` - GitHub Actions — switch to Java 17 - Update Run Configuration entries +- Adjust Kover configuration ### Fixed - Example code - Fixed deprecated usage of `ContentFactory` in `MyToolWindowFactory` Jakub Chrzanowski A minute ago d454bc09 diff --git a/build.gradle.kts b/build.gradle.kts index 5f9a986..1a91123 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -56,8 +56,12 @@ qodana { } // Configure Gradle Kover Plugin - read more: https://github.com/Kotlin/kotlinx-kover#configuration -kover.xmlReport { - onCheck = true +koverReport { + defaults { + xml { + onCheck = true + } + } } tasks { diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 86fd5cc..294becf 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -8,7 +8,7 @@ kotlin = "1.8.21" changelog = "2.1.0" gradleIntelliJPlugin = "1.14.1" qodana = "0.1.13" -kover = "0.6.1" +kover = "0.7.1" [libraries] annotations = { group = "org.jetbrains", name = "annotations", version.ref = "annotations" }