controls-kt/demo/build.gradle.kts

37 lines
886 B
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{
2021-04-05 17:41:36 +03:00
mavenCentral()
2020-06-05 21:07:23 +03:00
jcenter()
2021-04-05 17:41:36 +03:00
maven("https://repo.kotlin.link")
2020-06-05 21:07:23 +03:00
maven("https://kotlin.bintray.com/kotlinx")
}
dependencies{
2021-02-09 16:39:39 +03:00
implementation(project(":controls-core"))
implementation(project(":controls-server"))
implementation(project(":controls-magix-client"))
2020-06-06 21:48:38 +03:00
implementation("no.tornado:tornadofx:1.7.20")
2021-04-05 17:41:36 +03:00
implementation("space.kscience:plotlykt-server:0.4.0-dev-2")
2020-12-12 10:44:41 +03:00
implementation("com.github.Ricky12Awesome:json-schema-serialization:0.6.6")
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{
2021-04-05 17:41:36 +03:00
mainClass.set("space.kscience.dataforge.control.demo.DemoControllerViewKt")
2020-06-05 21:07:23 +03:00
}