build.gradle.kts 647 B

12345678910111213141516
  1. plugins {
  2. id("otel.javaagent-testing")
  3. }
  4. dependencies {
  5. testInstrumentation(project(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-jersey-2.0:javaagent"))
  6. testInstrumentation(project(":instrumentation:servlet:servlet-3.0:javaagent"))
  7. // First version with DropwizardTestSupport:
  8. testImplementation("io.dropwizard:dropwizard-testing:0.8.0")
  9. testImplementation("javax.xml.bind:jaxb-api:2.2.3")
  10. testImplementation("com.fasterxml.jackson.module:jackson-module-afterburner")
  11. }
  12. // Requires old Guava. Can't use enforcedPlatform since predates BOM
  13. configurations.testRuntimeClasspath.resolutionStrategy.force("com.google.guava:guava:19.0")