controls-kt/demo/build.gradle.kts

41 lines
1.1 KiB
Plaintext
Raw Normal View History

2020-06-05 21:07:23 +03:00
plugins {
2020-08-04 16:13:53 +03:00
kotlin("jvm")
2020-07-24 23:13:58 +03:00
id("org.openjfx.javafxplugin") version "0.0.9"
2020-07-19 20:37:44 +03:00
application
2020-06-05 21:07:23 +03:00
}
repositories{
2020-09-08 10:13:14 +03:00
mavenLocal()
2020-06-05 21:07:23 +03:00
jcenter()
maven("https://kotlin.bintray.com/kotlinx")
maven("https://dl.bintray.com/kotlin/kotlin-eap")
maven("https://dl.bintray.com/mipt-npm/dataforge")
maven("https://dl.bintray.com/mipt-npm/scientifik")
2020-08-15 20:24:35 +03:00
maven("https://dl.bintray.com/mipt-npm/kscience")
2020-06-05 21:07:23 +03:00
maven("https://dl.bintray.com/mipt-npm/dev")
}
dependencies{
2020-07-19 20:37:44 +03:00
implementation(project(":dataforge-device-core"))
implementation(project(":dataforge-device-server"))
2020-10-10 17:21:28 +03:00
implementation(project(":dataforge-magix-client"))
2020-06-06 21:48:38 +03:00
implementation("no.tornado:tornadofx:1.7.20")
implementation(kotlin("stdlib-jdk8"))
2020-09-08 10:13:14 +03:00
implementation("kscience.plotlykt:plotlykt-server:0.3.0-dev-2")
2020-06-05 21:07:23 +03:00
}
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
2020-06-07 21:16:19 +03:00
kotlinOptions {
jvmTarget = "11"
}
2020-06-06 21:48:38 +03:00
}
javafx{
version = "14"
modules("javafx.controls")
2020-06-09 17:36:34 +03:00
}
application{
mainClassName = "hep.dataforge.control.demo.DemoControllerViewKt"
2020-06-05 21:07:23 +03:00
}