forked from eclipse-dataspacetck/dsp-tck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
61 lines (49 loc) · 1.58 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
/*
* Copyright (c) 2023 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
*
* Contributors:
* Bayerische Motoren Werke Aktiengesellschaft (BMW AG) - initial API and implementation
*
*
*/
plugins {
`java-library`
checkstyle
jacoco
`jacoco-report-aggregation`
}
allprojects {
repositories {
mavenCentral()
mavenLocal()
}
apply(plugin = "java-library")
apply(plugin = "checkstyle")
tasks.test {
useJUnitPlatform()
systemProperty("cvf.launcher", "cvf.sample.tf.gx.system.GxSystemLauncher")
}
dependencies {
implementation("org.junit.jupiter:junit-jupiter:5.9.3")
implementation("org.junit.platform:junit-platform-suite-engine:1.8.1")
implementation("com.fasterxml.jackson.core:jackson-databind:2.15.3")
implementation("com.squareup.okhttp3:okhttp:4.12.0")
implementation("org.mockito:mockito-core:5.6.0")
implementation("org.awaitility:awaitility:4.2.0")
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jakarta-jsonp:2.15.3")
implementation("com.apicatalog:titanium-json-ld:1.3.2")
implementation("org.glassfish:jakarta.json:2.0.0")
}
}
// needed for running the dash tool
tasks.register("allDependencies", DependencyReportTask::class)
// disallow any errors
checkstyle {
maxErrors = 0
}