23 lines
487 B
Plaintext
23 lines
487 B
Plaintext
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
import org.openjfx.gradle.JavaFXOptions
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("org.openjfx.javafxplugin")
|
|
}
|
|
|
|
dependencies{
|
|
api(project(":dataforge-vis:dataforge-vis-spatial"))
|
|
api("no.tornado:tornadofx:1.7.18")
|
|
implementation("org.fxyz3d:fxyz3d:0.4.0")
|
|
}
|
|
|
|
extensions.findByType<JavaFXOptions>()?.apply {
|
|
modules("javafx.controls")
|
|
}
|
|
|
|
tasks.withType<KotlinCompile> {
|
|
kotlinOptions{
|
|
jvmTarget = "1.8"
|
|
}
|
|
} |