forked from eclipse-edc/MinimumViableDataspace
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle.kts
82 lines (70 loc) · 2.09 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
plugins {
java
`java-library`
jacoco
checkstyle
}
val downloadArtifact: Configuration by configurations.creating {
isTransitive = false
}
val identityHubVersion: String by project;
val registrationServiceVersion: String by project;
dependencies {
downloadArtifact("org.eclipse.dataspaceconnector.identityhub:identity-hub-cli:${identityHubVersion}:all")
downloadArtifact("org.eclipse.dataspaceconnector.registrationservice:registration-service-cli:${registrationServiceVersion}:all")
}
// task that downloads the RegSrv CLI and IH CLI
val getJars by tasks.registering(Copy::class) {
outputs.upToDateWhen { false } //always download
from(downloadArtifact)
// strip away the version string
.rename { s -> s.replace("-${identityHubVersion}", "")
.replace("-${registrationServiceVersion}", "")
.replace("-all", "")
}
into(layout.projectDirectory.dir("system-tests/resources/cli-tools"))
}
// run the download jars task after the "jar" task
tasks{
jar {
finalizedBy(getJars)
}
}
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/")
}
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
}
}
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)
}
}
}
}