build.gradle.kts 531 B

12345678910111213141516
  1. plugins {
  2. id("otel.library-instrumentation")
  3. }
  4. dependencies {
  5. compileOnly("com.google.auto.value:auto-value-annotations")
  6. annotationProcessor("com.google.auto.value:auto-value")
  7. library("org.apache.dubbo:dubbo:2.7.0")
  8. testImplementation(project(":instrumentation:apache-dubbo-2.7:testing"))
  9. testLibrary("org.apache.dubbo:dubbo-config-api:2.7.0")
  10. latestDepTestLibrary("org.apache.dubbo:dubbo:2.+") // documented limitation
  11. latestDepTestLibrary("org.apache.dubbo:dubbo-config-api:2.+") // documented limitation
  12. }