controls-kt/controls-magix-client/build.gradle.kts

25 lines
409 B
Plaintext
Raw Normal View History

2020-07-19 20:37:44 +03:00
plugins {
2022-08-02 09:46:31 +03:00
id("space.kscience.gradle.mpp")
2021-04-05 17:41:36 +03:00
`maven-publish`
2020-07-19 20:37:44 +03:00
}
2023-05-07 21:04:08 +03:00
description = """
Magix service for binding controls devices (both as RPC client and server
""".trimIndent()
kscience {
2023-02-18 20:05:26 +03:00
jvm()
js()
2020-12-02 12:35:16 +03:00
useSerialization {
json()
}
2023-02-18 20:05:26 +03:00
dependencies {
2023-05-08 15:39:34 +03:00
api(projects.magix.magixApi)
api(projects.controlsCore)
api("com.benasher44:uuid:0.7.0")
2020-07-19 20:37:44 +03:00
}
2023-05-07 21:04:08 +03:00
}
readme {
2023-02-18 20:05:26 +03:00
}