2020-06-30 22:03:56 +03:00
|
|
|
plugins {
|
2021-04-05 17:41:36 +03:00
|
|
|
id("ru.mipt.npm.gradle.jvm")
|
|
|
|
`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")
|
|
|
|
implementation("io.ktor:ktor-websockets:$ktorVersion")
|
|
|
|
implementation("io.ktor:ktor-serialization:$ktorVersion")
|
|
|
|
implementation("io.ktor:ktor-html-builder:$ktorVersion")
|
|
|
|
}
|