-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
44 lines (37 loc) · 947 Bytes
/
Copy pathsettings.gradle.kts
File metadata and controls
44 lines (37 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import kotlinx.kover.gradle.aggregation.settings.dsl.minBound
import kotlinx.kover.gradle.plugin.dsl.CoverageUnit
pluginManagement {
repositories {
google()
mavenCentral()
maven("https://plugins.gradle.org/m2/")
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
id("org.jetbrains.kotlinx.kover.aggregation") version "0.9.8"
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
rootProject.name = "Some"
include(":core")
include(":android")
include(":kotest")
kover {
enableCoverage()
reports {
verify {
rule {
name = "Minimum coverage"
minBound(95, CoverageUnit.LINE)
minBound(95, CoverageUnit.INSTRUCTION)
minBound(79, CoverageUnit.BRANCH)
}
}
}
}