Dependencies - upgrade org.jetbrains.kotlinx.kover to 0.7.1 + adjust Kover configuration

This commit is contained in:
Jakub Chrzanowski 2023-06-07 10:16:43 +02:00 committed by Jakub Chrzanowski
parent 454012e7ed
commit df1b15414a
3 changed files with 9 additions and 3 deletions

View File

@ -15,10 +15,12 @@
- Dependencies - upgrade `org.jetbrains.intellij` to `1.14.1` - Dependencies - upgrade `org.jetbrains.intellij` to `1.14.1`
- Dependencies - upgrade `org.jetbrains.changelog` to `2.1.0` - Dependencies - upgrade `org.jetbrains.changelog` to `2.1.0`
- Dependencies - upgrade `org.jetbrains.kotlin.jvm` to `1.8.21` - 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` - Dependencies (GitHub Actions) - upgrade `JetBrains/qodana-action` to `v2023.1.0`
- Upgrade Gradle Wrapper to `8.1.1` - Upgrade Gradle Wrapper to `8.1.1`
- GitHub Actions — switch to Java 17 - GitHub Actions — switch to Java 17
- Update Run Configuration entries - Update Run Configuration entries
- Adjust Kover configuration
### Fixed ### Fixed
- Example code - Fixed deprecated usage of `ContentFactory` in `MyToolWindowFactory` Jakub Chrzanowski A minute ago d454bc09 - Example code - Fixed deprecated usage of `ContentFactory` in `MyToolWindowFactory` Jakub Chrzanowski A minute ago d454bc09

View File

@ -56,8 +56,12 @@ qodana {
} }
// Configure Gradle Kover Plugin - read more: https://github.com/Kotlin/kotlinx-kover#configuration // Configure Gradle Kover Plugin - read more: https://github.com/Kotlin/kotlinx-kover#configuration
kover.xmlReport { koverReport {
defaults {
xml {
onCheck = true onCheck = true
}
}
} }
tasks { tasks {

View File

@ -8,7 +8,7 @@ kotlin = "1.8.21"
changelog = "2.1.0" changelog = "2.1.0"
gradleIntelliJPlugin = "1.14.1" gradleIntelliJPlugin = "1.14.1"
qodana = "0.1.13" qodana = "0.1.13"
kover = "0.6.1" kover = "0.7.1"
[libraries] [libraries]
annotations = { group = "org.jetbrains", name = "annotations", version.ref = "annotations" } annotations = { group = "org.jetbrains", name = "annotations", version.ref = "annotations" }