-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
44 lines (31 loc) · 955 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
36
37
38
39
40
41
42
43
44
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.61'
id 'org.openjfx.javafxplugin' version '0.0.7'
}
javafx {
version = "11.0.2"
modules = [ 'javafx.controls', 'javafx.media', 'javafx.graphics' ,'javafx.fxml']
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation 'no.tornado:tornadofx:1.7.19'
implementation 'org.openjfx:javafx:11.0.2'
implementation 'org.openjfx:javafx-base:11.0.2'
implementation 'org.openjfx:javafx-controls:11.0.2'
implementation 'com.github.javafaker:javafaker:1.0.2'
compile 'com.jfoenix:jfoenix:9.0.10'
compile group: 'com.microsoft.sqlserver', name: 'mssql-jdbc', version: '7.2.2.jre11'
}
compileKotlin {
kotlinOptions.jvmTarget = "11"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "11"
}