-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
39 lines (33 loc) · 837 Bytes
/
build.gradle
File metadata and controls
39 lines (33 loc) · 837 Bytes
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
plugins {
id 'org.jetbrains.kotlin.jvm' version "1.8.21"
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.8'
id 'com.github.johnrengelman.shadow' version '7.0.0'
}
group = 'fr.minemobs'
version = '1.1'
repositories {
mavenCentral()
}
kotlin {
jvmToolchain(11)
}
application {
mainClassName = "fr.minemobs.pepitedorlocalization.MainKt"
}
dependencies {
implementation "no.tornado:tornadofx:$tornadofx_version"
implementation 'com.google.code.gson:gson:2.8.9'
implementation "org.jetbrains.kotlin:kotlin-reflect:1.4.32"
testImplementation "org.jetbrains.kotlin:kotlin-test-junit"
}
compileKotlin {
kotlinOptions.jvmTarget = "11"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "11"
}
javafx {
version = "11.0.2"
modules = ['javafx.controls', 'javafx.graphics']
}