mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2024-10-27 20:44:05 +00:00
Update Kover configuration
This commit is contained in:
parent
07ed8ab11e
commit
c46eed131b
@ -6,6 +6,7 @@
|
|||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
- Update Kover configuration
|
||||||
- Dependencies - upgrade `org.jetbrains.intellij` to `1.17.3`
|
- Dependencies - upgrade `org.jetbrains.intellij` to `1.17.3`
|
||||||
- Dependencies - upgrade `org.jetbrains.kotlin.jvm` to `2.0.0`
|
- Dependencies - upgrade `org.jetbrains.kotlin.jvm` to `2.0.0`
|
||||||
- Dependencies - upgrade `org.jetbrains.kotlinx.kover` to `0.8.0`
|
- Dependencies - upgrade `org.jetbrains.kotlinx.kover` to `0.8.0`
|
||||||
|
@ -48,10 +48,12 @@ changelog {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 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
|
||||||
koverReport {
|
kover {
|
||||||
defaults {
|
reports {
|
||||||
xml {
|
total {
|
||||||
onCheck = true
|
xml {
|
||||||
|
onCheck = true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -71,7 +73,7 @@ tasks {
|
|||||||
val start = "<!-- Plugin description -->"
|
val start = "<!-- Plugin description -->"
|
||||||
val end = "<!-- Plugin description end -->"
|
val end = "<!-- Plugin description end -->"
|
||||||
|
|
||||||
with (it.lines()) {
|
with(it.lines()) {
|
||||||
if (!containsAll(listOf(start, end))) {
|
if (!containsAll(listOf(start, end))) {
|
||||||
throw GradleException("Plugin description section not found in README.md:\n$start ... $end")
|
throw GradleException("Plugin description section not found in README.md:\n$start ... $end")
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user