-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
57 lines (43 loc) · 1.57 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
55
56
57
plugins {
id 'java'
id 'org.openjfx.javafxplugin' version '0.0.8'
id 'application'
id "com.github.johnrengelman.shadow" version "5.2.0"
}
group 'dr'
version '1.0-SNAPSHOT'
//sourceCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
//??
// compile 'de.jensd:fontawesomefx:8.9'
// compile 'com.airhacks:afterburner.fx:1.6.0'
//compile 'com.github.jiconfont:jiconfont-javafx:1.0.0'
//implementation 'org.controlsfx:controlsfx:11.0.1'
//used
compile 'com.jfoenix:jfoenix:9.0.8'
compile group: 'org.apache.ant', name: 'ant-compress', version: '1.5'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.0.1'
compile group: 'org.lockss', name: 'josql', version: '2.2-p1'
compile 'org.kordamp.bootstrapfx:bootstrapfx-core:0.2.4'
}
javafx {
version = "12"
modules = [ 'javafx.controls', 'javafx.fxml' ,]
}
run {
run {
jvmArgs = [
'--add-exports=javafx.graphics/com.sun.javafx.application=ALL-UNNAMED',
'--add-exports=javafx.controls/com.sun.javafx.scene.control=ALL-UNNAMED',
'--add-exports=javafx.base/com.sun.javafx.event=ALL-UNNAMED',
'--add-exports=javafx.controls/com.sun.javafx.scene.control.behavior=ALL-UNNAMED',
'--add-exports=javafx.base/com.sun.javafx.binding=ALL-UNNAMED',
'--add-exports=javafx.graphics/com.sun.javafx.stage=ALL-UNNAMED',
] }
}
mainClassName = 'dr.Launcher'