opentelemetry-java-instrume.../instrumentation/dropwizard/dropwizard-testing/build.gradle.kts

17 lines
647 B
Plaintext

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