Skip to content

Commit dda0d5c

Browse files
authored
Remove kover from sqldelight module (#233)
Co-authored-by: hfhbd <[email protected]>
1 parent b600963 commit dda0d5c

File tree

5 files changed

+21
-17
lines changed

5 files changed

+21
-17
lines changed

gradle/build-logic/src/main/kotlin/dokkaKover.gradle.kts renamed to gradle/build-logic/src/main/kotlin/dokkaLicensee.gradle.kts

-14
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import org.jetbrains.dokka.gradle.*
33
plugins {
44
id("org.jetbrains.dokka")
55
id("app.cash.licensee")
6-
id("org.jetbrains.kotlinx.kover")
76
}
87

98
tasks.named<DokkaTaskPartial>("dokkaHtmlPartial") {
@@ -26,16 +25,3 @@ tasks.named<DokkaTaskPartial>("dokkaHtmlPartial") {
2625
licensee {
2726
allow(spdxId = "Apache-2.0")
2827
}
29-
30-
koverReport {
31-
defaults {
32-
verify {
33-
onCheck = true
34-
rule {
35-
bound {
36-
minValue = 90
37-
}
38-
}
39-
}
40-
}
41-
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
plugins {
2+
id("org.jetbrains.kotlinx.kover")
3+
}
4+
5+
koverReport {
6+
defaults {
7+
verify {
8+
onCheck = true
9+
rule {
10+
bound {
11+
minValue = 85
12+
}
13+
}
14+
}
15+
}
16+
}

kotlinx-uuid-core/build.gradle.kts

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
plugins {
77
id("kotlinMPP")
88
id("publish")
9-
id("dokkaKover")
9+
id("dokkaLicensee")
10+
id("kover")
1011
}
1112

1213
kotlin {

kotlinx-uuid-exposed/build.gradle.kts

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55

66
plugins {
77
id("kotlinJvm")
8-
id("dokkaKover")
8+
id("dokkaLicensee")
9+
id("kover")
910
id("publish")
1011
}
1112

kotlinx-uuid-sqldelight/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
plugins {
55
id("kotlinMPP")
66
id("publish")
7-
id("dokkaKover")
7+
id("dokkaLicensee")
88
}
99

1010
kotlin {

0 commit comments

Comments
 (0)