2021-07-03 14:16:31 +03:00
|
|
|
plugins {
|
|
|
|
id("ru.mipt.npm.gradle.jvm")
|
2021-08-02 16:42:19 +03:00
|
|
|
application
|
2021-07-03 14:16:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
dependencies{
|
|
|
|
implementation(projects.magix.magixServer)
|
|
|
|
implementation(projects.magix.magixZmq)
|
|
|
|
implementation(projects.magix.magixRsocket)
|
|
|
|
implementation("ch.qos.logback:logback-classic:1.2.3")
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin{
|
|
|
|
explicitApi = null
|
2021-08-02 16:42:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
application{
|
|
|
|
mainClass.set("ZmqKt")
|
2021-07-03 14:16:31 +03:00
|
|
|
}
|