-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
47 lines (41 loc) · 944 Bytes
/
Copy pathbuild.gradle.kts
File metadata and controls
47 lines (41 loc) · 944 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
45
46
47
plugins {
base
alias(libs.plugins.detekt)
alias(libs.plugins.kover)
`dokka-convention`
alias(libs.plugins.nexusPublish) // https://github.com/gradle-nexus/publish-plugin
kotlin("plugin.serialization") version libs.versions.kotlin apply false
signing
}
allprojects {
repositories {
mavenCentral()
}
}
// Common configuration for subprojects
subprojects {
apply(plugin = "org.jetbrains.dokka")
apply(plugin = "org.jetbrains.dokka-javadoc")
apply(plugin = "com.diffplug.spotless")
}
dependencies {
kover(project(":koog-sauce"))
kover(project(":koog-sauce-langchain4j"))
kover(project(":koog-sauce-spring-ai"))
kover(project(":examples:jvm"))
}
kover {
reports {
total {
xml
html
}
verify {
rule {
bound {
minValue = 35
}
}
}
}
}