51 lines
1.2 KiB
Plaintext
51 lines
1.2 KiB
Plaintext
import space.kscience.gradle.Maturity
|
|
|
|
plugins {
|
|
id("space.kscience.gradle.mpp")
|
|
`maven-publish`
|
|
}
|
|
|
|
description = """
|
|
Magix service for binding controls devices (both as RPC client and server)
|
|
""".trimIndent()
|
|
|
|
kscience {
|
|
jvm()
|
|
js()
|
|
native()
|
|
useCoroutines()
|
|
useSerialization {
|
|
json()
|
|
}
|
|
|
|
commonMain {
|
|
api(projects.magix.magixApi)
|
|
api(projects.controlsCore)
|
|
api(libs.uuid)
|
|
}
|
|
|
|
jvmTest{
|
|
implementation(spclibs.logback.classic)
|
|
implementation(projects.magix.magixServer)
|
|
implementation(projects.magix.magixRsocket)
|
|
implementation(spclibs.ktor.server.cio)
|
|
implementation(spclibs.ktor.server.websockets)
|
|
implementation(spclibs.ktor.client.cio)
|
|
}
|
|
}
|
|
|
|
readme {
|
|
maturity = Maturity.EXPERIMENTAL
|
|
|
|
feature("controlsMagix", ref = "src/commonMain/kotlin/space/kscience/controls/client/controlsMagix.kt"){
|
|
"""
|
|
Connect a `DeviceManage` with one or many devices to the Magix endpoint
|
|
""".trimIndent()
|
|
}
|
|
|
|
feature("DeviceClient", ref = "src/commonMain/kotlin/space/kscience/controls/client/DeviceClient.kt"){
|
|
"""
|
|
A remote connector to Controls-kt device via Magix
|
|
""".trimIndent()
|
|
}
|
|
} |