forked from ingbyr/vdm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
66 lines (56 loc) · 1.5 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
58
59
60
61
62
63
64
65
66
group = "com.ingbyr.vdm"
version = "0.3.1"
buildscript {
ext.kotlin_version = "1.2.41"
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "de.dynamicfiles.projects.gradle.plugins:javafx-gradle-plugin:8.8.2"
}
}
apply plugin: "kotlin"
apply plugin: "javafx-gradle-plugin"
sourceCompatibility = 1.8
repositories {
jcenter()
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
compile "no.tornado:tornadofx:1.7.16"
compile "com.jfoenix:jfoenix:8.0.3"
compile "com.beust:klaxon:2.1.13"
compile "ch.qos.logback:logback-core:1.2.3"
compile "ch.qos.logback:logback-classic:1.2.3"
compile "com.squareup.okhttp3:okhttp:3.10.0"
compile "com.squareup.okio:okio:1.14.0"
compile "org.mapdb:mapdb:3.0.5"
testCompile "io.kotlintest:kotlintest-runner-junit5:3.1.0"
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
test {
useJUnitPlatform()
}
jfx {
verbose = false
mainClass = "com.ingbyr.vdm.MainKt"
jfxMainAppJarName = "VDM.jar"
vendor = "ingbyr"
appName = "VDM"
additionalAppResources = "src/main/deploy"
skipMainClassScanning = true
jvmProperties = ["-Dfile.encoding": "UTF-8"]
nativeReleaseVersion = "0.3.1"
bundler = "exe"
needShortcut = true
bundleArguments = [
installdirChooser: "true"
]
}