2021-06-21 14:09:59 +03:00
|
|
|
plugins {
|
2022-08-02 09:46:31 +03:00
|
|
|
id("space.kscience.gradle.jvm")
|
2021-06-21 14:09:59 +03:00
|
|
|
`maven-publish`
|
|
|
|
}
|
|
|
|
|
2021-06-28 20:58:27 +03:00
|
|
|
description = """
|
|
|
|
ZMQ client endpoint for Magix
|
|
|
|
""".trimIndent()
|
2021-06-21 14:09:59 +03:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api(projects.magix.magixApi)
|
2023-02-25 18:15:19 +03:00
|
|
|
api("org.slf4j:slf4j-api:2.0.6")
|
2021-06-21 14:09:59 +03:00
|
|
|
implementation("org.zeromq:jeromq:0.5.2")
|
|
|
|
}
|