-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
38 lines (33 loc) · 1.39 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
plugins {
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
//implementation group: 'org.json', name: 'json', version: '20220320'
implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
implementation group: 'org.openjfx', name: 'javafx', version: '11', ext: 'pom'
implementation 'uk.co.caprica:vlcj:4.7.2'
implementation "com.google.guava:guava:29.0-jre"
implementation "com.miglayout:miglayout-swing:5.2"
implementation "net.java.dev.glazedlists:glazedlists_java15:1.9.1"
implementation "org.slf4j:slf4j-log4j12:1.7.25"
implementation "uk.co.caprica:native-streams:1.0.0"
implementation "uk.co.caprica:vlcj:4.4.2"
implementation "com.fasterxml.jackson.core:jackson-core:2.9.6"
implementation "com.fasterxml.jackson.core:jackson-annotations:2.9.6"
implementation "com.fasterxml.jackson.core:jackson-databind:2.9.6"
implementation 'io.github.nassimus26:FlowControl:1.0.9'
compileOnly 'org.projectlombok:lombok:1.18.24'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
testCompileOnly 'org.projectlombok:lombok:1.18.24'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.24'
}
test {
useJUnitPlatform()
}