controls-kt/demo/build.gradle.kts

40 lines
1018 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-06-22 17:37:22 +03:00
implementation(projects.controlsCore)
//implementation(projects.controlsServer)
implementation(projects.magix.magixServer)
implementation(projects.controlsMagixClient)
implementation(projects.magix.magixRsocket)
2020-06-06 21:48:38 +03:00
implementation("no.tornado:tornadofx:1.7.20")
2021-06-20 14:46:02 +03:00
implementation("space.kscience:plotlykt-server:0.4.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"
2021-06-20 14:46:02 +03:00
freeCompilerArgs = freeCompilerArgs + "-Xjvm-default=all"
2020-06-07 21:16:19 +03:00
}
2020-06-06 21:48:38 +03:00
}
javafx{
version = "14"
modules("javafx.controls")
2020-06-09 17:36:34 +03:00
}
application{
2021-06-28 20:58:27 +03:00
mainClass.set("ru.mipt.npm.controls.demo.DemoControllerViewKt")
2020-06-05 21:07:23 +03:00
}