-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
55 lines (43 loc) · 1.21 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
group 'com.chmelar.sem1'
version '1.0'
buildscript {
ext.kotlin_version = '1.1.51'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// classpath group: 'de.dynamicfiles.projects.gradle.plugins', name: 'javafx-gradle-plugin', version: '8.8.2'
}
}
apply plugin: 'kotlin'
//apply plugin: 'java'
repositories {
jcenter()
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
compile 'no.tornado:tornadofx:1.7.12'
compile 'com.jfoenix:jfoenix:1.9.0'
compile group: 'net.sf.supercsv', name: 'super-csv', version: '2.4.0'
compile group: 'org.controlsfx', name: 'controlsfx', version: '8.0.5'
// compile files("/usr/share/java/openjfx/lib/packager.jar")
}
//apply plugin: 'javafx-gradle-plugin'
//jfx {
// // minimal requirement for jfxJar-task
// mainClass = 'full.qualified.nameOf.TheMainClass'
//
// // minimal requirement for jfxNative-task
// vendor = 'YourName'
//}
sourceSets {
main.kotlin.srcDirs += 'src/main/java'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}