-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
35 lines (30 loc) · 880 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
33
34
35
plugins {
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.8'
id 'org.beryx.jlink' version '2.12.0'
}
repositories {
mavenCentral()
jcenter()
}
javafx {
version = "13.0.1"
modules = [ 'javafx.controls', 'javafx.fxml', 'javafx.swing' ]
}
application {
mainClassName = "$moduleName/com.starea.MainApp"
}
jlink {
options = ['--strip-debug', '--compress', '2', '--no-header-files', '--no-man-pages']
launcher {
name = 'remotedraw'
}
}
dependencies {
compile 'org.kordamp.bootstrapfx:bootstrapfx-core:0.2.4'
compile group: 'org.kordamp.ikonli', name: 'ikonli-core', version: '11.3.4'
compile 'org.kordamp.ikonli:ikonli-fontawesome5-pack:11.3.4'
compile 'org.kordamp.ikonli:ikonli-javafx:11.3.4'
compile 'com.jfoenix:jfoenix:9.0.8'
compile 'org.kordamp.ikonli:ikonli-fontawesome-pack:11.3.4'
}