2022-06-06 10:57:24 +03:00
|
|
|
plugins {
|
2022-08-02 09:46:31 +03:00
|
|
|
id("space.kscience.gradle.jvm")
|
2022-06-06 10:57:24 +03:00
|
|
|
`maven-publish`
|
|
|
|
}
|
|
|
|
|
|
|
|
description = """
|
|
|
|
RabbitMQ client magix endpoint
|
|
|
|
""".trimIndent()
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api(projects.magix.magixApi)
|
|
|
|
implementation("com.rabbitmq:amqp-client:5.14.2")
|
|
|
|
}
|
2022-06-06 14:10:48 +03:00
|
|
|
|
|
|
|
readme{
|
2022-08-02 09:46:31 +03:00
|
|
|
maturity = space.kscience.gradle.Maturity.PROTOTYPE
|
2022-06-06 14:10:48 +03:00
|
|
|
}
|