-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
50 lines (41 loc) · 1010 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
45
46
47
48
49
50
plugins {
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.12'
id 'org.jetbrains.kotlin.jvm' version '1.7.20-Beta'
}
group = 'ink.bluecloud'
version = '1.0-SNAPSHOT'
repositories {
mavenLocal()
maven {
url 'https://repo.huaweicloud.com/repository/maven/'
}
maven {
url 'https://maven.aliyun.com/repository/central/'
}
maven {
url 'https://maven.aliyun.com/repository/public/'
}
mavenCentral()
}
javafx {
version = '18.0.2'
modules = [ 'javafx.controls' ]
}
dependencies {
compileOnly files("D:\\IDEA_WorkSpace\\ElementFX\\build\\libs\\ElementFX-1.0-SNAPSHOT.jar")
compileOnly group: 'org.jetbrains.kotlinx', name: 'kotlinx-coroutines-javafx', version: '1.6.4'
testImplementation 'org.jetbrains.kotlin:kotlin-test'
}
test {
useJUnitPlatform()
}
compileKotlin {
kotlinOptions.jvmTarget = '17'
}
compileTestKotlin {
kotlinOptions.jvmTarget = '17'
}
application {
mainClassName = 'MainKt'
}