2020-06-30 22:03:56 +03:00
|
|
|
plugins {
|
2022-08-02 09:46:31 +03:00
|
|
|
id("space.kscience.gradle.jvm")
|
2021-04-05 17:41:36 +03:00
|
|
|
`maven-publish`
|
2020-06-30 22:03:56 +03:00
|
|
|
}
|
|
|
|
|
2021-06-22 17:37:22 +03:00
|
|
|
description = """
|
2021-06-28 20:58:27 +03:00
|
|
|
A magix event loop server with web server for visualization.
|
2021-06-22 17:37:22 +03:00
|
|
|
""".trimIndent()
|
|
|
|
|
2020-06-30 22:03:56 +03:00
|
|
|
val dataforgeVersion: String by rootProject.extra
|
2021-08-03 21:05:36 +03:00
|
|
|
val ktorVersion: String by rootProject.extra
|
2020-06-30 22:03:56 +03:00
|
|
|
|
2021-06-22 17:37:22 +03:00
|
|
|
dependencies {
|
2021-02-09 16:39:39 +03:00
|
|
|
implementation(project(":controls-core"))
|
|
|
|
implementation(project(":controls-tcp"))
|
2021-06-22 17:37:22 +03:00
|
|
|
implementation(projects.magix.magixServer)
|
2020-06-30 22:03:56 +03:00
|
|
|
implementation("io.ktor:ktor-server-cio:$ktorVersion")
|
2022-05-23 23:30:38 +03:00
|
|
|
implementation("io.ktor:ktor-server-websockets:$ktorVersion")
|
|
|
|
implementation("io.ktor:ktor-server-content-negotiation:$ktorVersion")
|
|
|
|
implementation("io.ktor:ktor-serialization-kotlinx-json:$ktorVersion")
|
|
|
|
implementation("io.ktor:ktor-server-html-builder:$ktorVersion")
|
|
|
|
implementation("io.ktor:ktor-server-status-pages:$ktorVersion")
|
2020-06-30 22:03:56 +03:00
|
|
|
}
|