-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
46 lines (34 loc) · 1.14 KB
/
build.gradle
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 {
id 'java'
}
group 'edu.hm.cs.bess'
version '1.0-SNAPSHOT'
subprojects {
apply plugin: 'java'
sourceCompatibility = 1.14
repositories {
mavenCentral()
}
dependencies {
// JSON serialization/deserialization
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.11.0'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.11.0'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.11.0'
// Useful annotations (e. g. @Nullable, @NotNull, ...)
implementation group: 'org.jetbrains', name: 'annotations', version: '19.0.0'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter', version: '5.6.2'
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.16.1'
}
java {
modularity.inferModulePath = true
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}
}
dependencies {
implementation 'org.jetbrains:annotations:15.0'
}