20 lines
353 B
Plaintext
20 lines
353 B
Plaintext
plugins {
|
|
id("ru.mipt.npm.gradle.jvm")
|
|
application
|
|
}
|
|
|
|
|
|
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
|
|
}
|
|
|
|
application{
|
|
mainClass.set("ZmqKt")
|
|
} |