2023-08-23 16:21:11 +03:00
|
|
|
import space.kscience.gradle.Maturity
|
|
|
|
|
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 = """
|
2023-08-23 16:21:11 +03:00
|
|
|
A combined Magix event loop server with web server for visualization.
|
2021-06-22 17:37:22 +03:00
|
|
|
""".trimIndent()
|
|
|
|
|
|
|
|
dependencies {
|
2023-05-07 21:04:08 +03:00
|
|
|
implementation(projects.controlsCore)
|
2023-06-04 11:23:26 +03:00
|
|
|
implementation(projects.controlsPortsKtor)
|
2021-06-22 17:37:22 +03:00
|
|
|
implementation(projects.magix.magixServer)
|
2024-03-19 21:48:26 +03:00
|
|
|
implementation(spclibs.ktor.server.cio)
|
|
|
|
implementation(spclibs.ktor.server.websockets)
|
|
|
|
implementation(spclibs.ktor.server.content.negotiation)
|
|
|
|
implementation(spclibs.ktor.serialization.kotlinx.json)
|
|
|
|
implementation(spclibs.ktor.server.html.builder)
|
|
|
|
implementation(spclibs.ktor.server.status.pages)
|
2023-08-23 16:21:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
readme{
|
|
|
|
maturity = Maturity.PROTOTYPE
|
2020-06-30 22:03:56 +03:00
|
|
|
}
|