-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
46 lines (41 loc) · 917 Bytes
/
build.gradle.kts
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
45
46
buildscript {
repositories {
mavenCentral()
}
}
plugins {
alias(libs.plugins.kotlin.jvm) apply false
alias(libs.plugins.kotlin.serialization) apply false
alias(libs.plugins.kover)
alias(libs.plugins.versions)
}
allprojects {
group = "dev.honegger"
version = "0.0.1"
repositories {
mavenCentral()
}
}
dependencies {
kover(project(":Backend:bootstrap"))
kover(project(":Backend:data-access"))
kover(project(":Backend:domain"))
kover(project(":Backend:web-api"))
kover(project(":Backend:security"))
}
kover {
reports {
filters {
excludes {
packages("dev.honegger.jasstracker.data.database", "dev.honegger.jasstracker.bootstrap.*")
}
}
verify {
rule {
bound {
minValue = 90
}
}
}
}
}