2022-06-05 19:06:50 +03:00
|
|
|
plugins {
|
|
|
|
kotlin("jvm")
|
|
|
|
application
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven("https://repo.kotlin.link")
|
|
|
|
}
|
|
|
|
|
|
|
|
val ktorVersion: String by rootProject.extra
|
|
|
|
val rsocketVersion: String by rootProject.extra
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(projects.magix.magixServer)
|
|
|
|
implementation(projects.magix.magixRsocket)
|
|
|
|
implementation(projects.magix.magixZmq)
|
|
|
|
implementation("io.ktor:ktor-client-cio:$ktorVersion")
|
|
|
|
|
|
|
|
implementation("ch.qos.logback:logback-classic:1.2.11")
|
|
|
|
}
|
2023-04-15 20:00:47 +03:00
|
|
|
kotlin{
|
|
|
|
jvmToolchain(11)
|
|
|
|
}
|
2022-06-05 19:06:50 +03:00
|
|
|
|
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
|
|
|
|
kotlinOptions {
|
|
|
|
freeCompilerArgs = freeCompilerArgs + listOf("-Xjvm-default=all", "-Xopt-in=kotlin.RequiresOptIn")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
application {
|
2022-08-02 09:10:02 +03:00
|
|
|
mainClass.set("space.kscience.controls.demo.echo.MainKt")
|
2022-06-05 19:06:50 +03:00
|
|
|
}
|