-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
31 lines (23 loc) · 885 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
plugins {
id 'java'
}
group 'org.sonn'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
// https://mvnrepository.com/artifact/org.graphstream/gs-core
implementation group: 'org.graphstream', name: 'gs-core', version: '2.0'
// https://mvnrepository.com/artifact/org.graphstream/gs-ui
implementation group: 'org.graphstream', name: 'gs-ui', version: '1.3'
// https://mvnrepository.com/artifact/org.graphstream/gs-ui-swing
implementation group: 'org.graphstream', name: 'gs-ui-swing', version: '2.0'
// https://mvnrepository.com/artifact/org.apache.commons/commons-lang3
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
}
test {
useJUnitPlatform()
}