mirror of https://github.com/usbharu/Hideout.git
Merge pull request #371 from usbharu/renovate/org.jetbrains.kotlinx.kover-0.x
chore(deps): update plugin kover to v0.8.0
This commit is contained in:
commit
d0da23ee90
|
@ -244,7 +244,7 @@ jobs:
|
||||||
uses: madrapps/jacoco-report@v1.6.1
|
uses: madrapps/jacoco-report@v1.6.1
|
||||||
with:
|
with:
|
||||||
paths: |
|
paths: |
|
||||||
${{ github.workspace }}/build/reports/kover/report.xml
|
${{ github.workspace }}/hideout-core/build/reports/kover/report.xml
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
title: Code Coverage
|
title: Code Coverage
|
||||||
update-comment: true
|
update-comment: true
|
||||||
|
|
|
@ -304,12 +304,16 @@ project.gradle.taskGraph.whenReady {
|
||||||
}
|
}
|
||||||
|
|
||||||
kover {
|
kover {
|
||||||
excludeSourceSets {
|
currentProject {
|
||||||
names("aot", "e2eTest", "intTest")
|
sources {
|
||||||
|
excludedSourceSets.addAll(
|
||||||
|
"aot", "e2eTest", "intTest"
|
||||||
|
)
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
koverReport {
|
reports {
|
||||||
filters {
|
filters {
|
||||||
excludes {
|
excludes {
|
||||||
packages(
|
packages(
|
||||||
|
@ -330,6 +334,7 @@ koverReport {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
springBoot {
|
springBoot {
|
||||||
buildInfo()
|
buildInfo()
|
||||||
|
|
|
@ -87,6 +87,6 @@ kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
|
||||||
spring-boot = { id = "org.springframework.boot", version = "3.2.5" }
|
spring-boot = { id = "org.springframework.boot", version = "3.2.5" }
|
||||||
detekt = { id = "io.gitlab.arturbosch.detekt", version.ref = "detekt" }
|
detekt = { id = "io.gitlab.arturbosch.detekt", version.ref = "detekt" }
|
||||||
kotlin-spring = { id = "org.jetbrains.kotlin.plugin.spring", version.ref = "kotlin" }
|
kotlin-spring = { id = "org.jetbrains.kotlin.plugin.spring", version.ref = "kotlin" }
|
||||||
kover = { id = "org.jetbrains.kotlinx.kover", version = "0.7.6" }
|
kover = { id = "org.jetbrains.kotlinx.kover", version = "0.8.0" }
|
||||||
openapi-generator = { id = "org.openapi.generator", version = "7.4.0" }
|
openapi-generator = { id = "org.openapi.generator", version = "7.4.0" }
|
||||||
license-report = { id = "com.github.jk1.dependency-license-report", version = "2.7" }
|
license-report = { id = "com.github.jk1.dependency-license-report", version = "2.7" }
|
Loading…
Reference in New Issue