-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
60 lines (48 loc) · 1.18 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
buildscript {
ext.kotlin_version = '1.3.30'
repositories {
mavenCentral()
}
dependencies {
}
}
plugins {
id 'org.jetbrains.kotlin.jvm' version "1.3.30"
id("org.openjfx.javafxplugin") version "0.0.7"
}
repositories {
mavenCentral()
}
javafx {
modules("javafx.controls", "javafx.fxml")
}
version '1.0-SNAPSHOT'
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile "org.jetbrains.kotlin:kotlin-stdlib-common:1.3.30"
compile "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.2.1"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8",
"org.jetbrains.kotlinx:kotlinx-coroutines-core:1.2.1"
testCompile group: 'junit', name: 'junit', version: '4.12'
}
sourceSets {
main {
resources {
srcDirs "src/main/resources"
}
}
}
jar {
manifest {attributes ( 'Main-Class': 'MainKt' )}
from {configurations.compile.collect {it.isDirectory() ? it : zipTree(it)}}
from {'src/main'} {
include 'resources/*'
}
}
sourceCompatibility = 1.8
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}