37 lines
783 B
Plaintext
37 lines
783 B
Plaintext
plugins {
|
|
kotlin("jvm")
|
|
application
|
|
}
|
|
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven("https://repo.kotlin.link")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.magix.magixServer)
|
|
implementation(projects.controlsMagix)
|
|
implementation(projects.magix.magixRsocket)
|
|
implementation(projects.magix.magixZmq)
|
|
|
|
implementation(spclibs.ktor.client.cio)
|
|
implementation(libs.plotlykt.server)
|
|
implementation(spclibs.logback.classic)
|
|
}
|
|
|
|
kotlin{
|
|
jvmToolchain(11)
|
|
}
|
|
|
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
|
|
kotlinOptions {
|
|
freeCompilerArgs = freeCompilerArgs + listOf("-Xjvm-default=all", "-Xopt-in=kotlin.RequiresOptIn")
|
|
}
|
|
}
|
|
|
|
|
|
application {
|
|
mainClass.set("space.kscience.controls.demo.MassDeviceKt")
|
|
} |