-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
54 lines (46 loc) · 1.18 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
47
48
49
50
51
52
53
54
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
}
plugins {
id 'java'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.8'
id "io.freefair.lombok" version "5.0.0-rc2"
}
group 'io.freefair'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots'
}
}
application {
mainClassName = 'io.freefair.videodatabase.Main'
}
dependencies {
implementation 'de.jensd:fontawesomefx:8.9'
implementation 'net.bramp.ffmpeg:ffmpeg:0.6.2'
implementation project(':FlexBoxFX')
implementation project(path: ':javafx-di', configuration: 'default')
compileOnly 'org.projectlombok:lombok:1.16.20'
testImplementation group: 'junit', name: 'junit', version: '4.12'
}
javafx {
sdk = "/Library/Java/JavaVirtualMachines/adoptopenjdk-13.jdk/Contents/Home"
version = "13"
modules = [ 'javafx.controls', 'javafx.base', 'javafx.graphics', 'javafx.fxml' ]
}
/*jfx {
verbose = true
mainClass = "io.freefair.videodatabase.Main"
css2bin = false
vendor = "FreeFair"
appName = "Video Database"
//runJavaParameter = '-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005'
}
*/