-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
32 lines (27 loc) · 1020 Bytes
/
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
plugins {
id 'java'
id 'application'
id "io.freefair.lombok" version "5.3.0"
id "com.github.johnrengelman.shadow" version "6.1.0"
}
repositories {
mavenCentral()
}
mainClassName = "org.netsim.NetworkSimulator"
dependencies {
implementation group: 'info.picocli', name: 'picocli-shell-jline3', version: '4.6.1'
implementation group: 'org.jline', name: 'jline-terminal-jansi', version: '3.19.0'
implementation group: 'org.reflections', name: 'reflections', version: '0.9.12'
implementation group: 'org.yaml', name: 'snakeyaml', version: '1.27'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.6.2'
testImplementation group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
}
test {
useJUnitPlatform()
}
application {
mainModule = "org.netsim"
mainClass = mainClassName
}