2021-07-03 14:16:31 +03:00
|
|
|
plugins {
|
2022-08-02 09:46:31 +03:00
|
|
|
id("space.kscience.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)
|
2023-04-15 20:00:47 +03:00
|
|
|
implementation(spclibs.logback.classic)
|
2021-07-03 14:16:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
kotlin{
|
|
|
|
explicitApi = null
|
2021-08-02 16:42:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
application{
|
|
|
|
mainClass.set("ZmqKt")
|
2021-07-03 14:16:31 +03:00
|
|
|
}
|