-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
40 lines (30 loc) · 877 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
buildscript {
ext.kotlin_version = '1.3.61'
repositories {
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
subprojects {
apply plugin: 'kotlin'
compileKotlin {
kotlinOptions.jvmTarget = "12"
}
repositories {
jcenter()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
compile "org.openjfx:javafx-base:12:mac"
compile "org.openjfx:javafx-graphics:12:mac"
compile "org.openjfx:javafx-controls:12:mac"
compile "org.openjfx:javafx-base:12:win"
compile "org.openjfx:javafx-graphics:12:win"
compile "org.openjfx:javafx-controls:12:win"
}
}
group 'org.kubed'
version '0.1-SNAPSHOT'