forked from agera-edc/MinimumViableDataspace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
46 lines (41 loc) · 1017 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
plugins {
java
`java-library`
jacoco
checkstyle
}
allprojects {
apply(plugin = "java")
apply(plugin = "checkstyle")
checkstyle {
toolVersion = "9.0"
configFile = rootProject.file("resources/checkstyle-config.xml")
configDirectory.set(rootProject.file("resources"))
maxErrors = 0 // does not tolerate errors
}
repositories {
mavenCentral()
mavenLocal()
maven {
url = uri("https://maven.iais.fraunhofer.de/artifactory/eis-ids-public/")
}
}
tasks.test {
useJUnitPlatform()
testLogging {
showStandardStreams = true
}
}
if (System.getenv("JACOCO") == "true") {
apply(plugin = "jacoco")
tasks.test {
finalizedBy(tasks.jacocoTestReport)
}
tasks.jacocoTestReport {
reports {
// Generate XML report for codecov.io
xml.required.set(true)
}
}
}
}