23 lines
620 B
Groovy
23 lines
620 B
Groovy
plugins {
|
|
id("otel.javaagent-instrumentation")
|
|
}
|
|
|
|
muzzle {
|
|
pass {
|
|
group = 'org.springframework.amqp'
|
|
module = 'spring-rabbit'
|
|
versions = "(,)"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
library 'org.springframework.amqp:spring-rabbit:1.0.0.RELEASE'
|
|
|
|
testInstrumentation project(':instrumentation:rabbitmq-2.7:javaagent')
|
|
|
|
// 2.1.7 adds the @RabbitListener annotation, we need that for tests
|
|
testLibrary 'org.springframework.amqp:spring-rabbit:2.1.7.RELEASE'
|
|
testLibrary "org.springframework.boot:spring-boot-starter-test:1.5.22.RELEASE"
|
|
testLibrary "org.springframework.boot:spring-boot-starter:1.5.22.RELEASE"
|
|
}
|