build.gradle.kts 578 B

1234567891011121314151617
  1. plugins {
  2. id("otel.library-instrumentation")
  3. }
  4. dependencies {
  5. library("org.apache.rocketmq:rocketmq-client:4.8.0")
  6. compileOnly("com.google.auto.value:auto-value-annotations")
  7. annotationProcessor("com.google.auto.value:auto-value")
  8. testLibrary("org.apache.rocketmq:rocketmq-test:4.8.0")
  9. testImplementation(project(":instrumentation:rocketmq-client-4.8:testing"))
  10. // 4.9.1 seems to have a bug which makes on of our tests fail
  11. latestDepTestLibrary("org.apache.rocketmq:rocketmq-client:4.9.0")
  12. latestDepTestLibrary("org.apache.rocketmq:rocketmq-test:4.9.0")
  13. }