2019-12-26 22:21:10 +03:00
|
|
|
import org.openjfx.gradle.JavaFXOptions
|
|
|
|
import scientifik.useSerialization
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id("scientifik.mpp")
|
|
|
|
id("org.openjfx.javafxplugin")
|
|
|
|
id("application")
|
|
|
|
}
|
|
|
|
|
|
|
|
group = "ru.mipt.npm"
|
|
|
|
|
|
|
|
useSerialization()
|
|
|
|
|
2019-12-30 11:40:37 +03:00
|
|
|
val ktor_version = "1.3.0-rc"
|
|
|
|
|
2019-12-26 22:21:10 +03:00
|
|
|
kotlin {
|
|
|
|
|
|
|
|
jvm {
|
|
|
|
withJava()
|
|
|
|
}
|
|
|
|
|
|
|
|
js {
|
|
|
|
browser {
|
|
|
|
webpackTask {
|
2019-12-28 22:11:43 +03:00
|
|
|
sourceMaps = true
|
2019-12-26 22:21:10 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
2019-12-30 11:40:37 +03:00
|
|
|
implementation(project(":dataforge-vis-spatial"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
jvmMain{
|
|
|
|
dependencies {
|
|
|
|
implementation("org.apache.commons:commons-math3:3.6.1")
|
|
|
|
implementation("io.ktor:ktor-server-cio:$ktor_version")
|
2019-12-26 22:21:10 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
application {
|
2019-12-30 11:40:37 +03:00
|
|
|
mainClassName = "ru.mipt.npm.muon.monitor.MMDemoAppKt"
|
2019-12-26 22:21:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
configure<JavaFXOptions> {
|
|
|
|
modules("javafx.controls")
|
|
|
|
}
|