-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.gradle.kts
61 lines (54 loc) · 1.6 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
plugins {
id("konvert.kotlin")
id("konvert.mvn-publish")
}
dependencies {
implementation(project(":converter"))
implementation(project(":processor"))
// add kover output from all non-empty modules
subprojects.forEach {
if (it.path !in arrayOf(":injectors", ":docs")) {
kover(project(it.path))
}
}
}
kover {
reports {
filters {
includes {
packages("io.mcarle.konvert")
}
}
total {
html {
onCheck = true
}
xml {
onCheck = true
}
}
}
}
/**
* Include the generated META-INF/services/com.google.devtools.ksp.processing.SymbolProcessorProvider from :processor module
*
* This is a workaround for later use with maven, as atm during KSP only the JAR itself is searched
*/
val copySymbolProcessorProvider = tasks.register<Copy>("copySymbolProcessorProvider") {
description = "Copies the generated META-INF/services/com.google.devtools.ksp.processing.SymbolProcessorProvider from :processor module"
group = LifecycleBasePlugin.BUILD_GROUP
dependsOn(configurations.runtimeClasspath)
from({ zipTree(project(":processor").tasks.jar.get().archiveFile) }) {
include("**/*.SymbolProcessorProvider")
includeEmptyDirs = false
}
into(layout.buildDirectory.dir("classes/kotlin/main/"))
}
tasks.named<Copy>("processResources") {
dependsOn(copySymbolProcessorProvider)
}
afterEvaluate {
tasks.named("koverGenerateArtifactJvm") {
dependsOn(copySymbolProcessorProvider)
}
}