12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- plugins {
- id("otel.javaagent-instrumentation")
- }
- muzzle {
- // Cant assert fails because muzzle assumes all instrumentations will fail
- // Instrumentations in jaxrs-2.0-common will pass
- pass {
- group.set("org.glassfish.jersey.core")
- module.set("jersey-server")
- versions.set("[2.0,3.0.0)")
- extraDependency("javax.servlet:javax.servlet-api:3.1.0")
- }
- pass {
- group.set("org.glassfish.jersey.containers")
- module.set("jersey-container-servlet")
- versions.set("[2.0,3.0.0)")
- extraDependency("javax.servlet:javax.servlet-api:3.1.0")
- }
- }
- dependencies {
- bootstrap(project(":instrumentation:jaxrs:jaxrs-common:bootstrap"))
- compileOnly("javax.ws.rs:javax.ws.rs-api:2.0")
- compileOnly("javax.servlet:javax.servlet-api:3.1.0")
- library("org.glassfish.jersey.core:jersey-server:2.0")
- library("org.glassfish.jersey.containers:jersey-container-servlet:2.0")
- implementation(project(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-common:javaagent"))
- testInstrumentation(project(":instrumentation:servlet:servlet-3.0:javaagent"))
- testInstrumentation(project(":instrumentation:servlet:servlet-javax-common:javaagent"))
- testImplementation(project(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-common:testing"))
- // First version with DropwizardTestSupport:
- testLibrary("io.dropwizard:dropwizard-testing:0.8.0")
- testImplementation("javax.xml.bind:jaxb-api:2.2.3")
- testImplementation("com.fasterxml.jackson.module:jackson-module-afterburner")
- latestDepTestLibrary("org.glassfish.jersey.core:jersey-server:2.+")
- latestDepTestLibrary("org.glassfish.jersey.containers:jersey-container-servlet:2.+")
- // this is needed because dropwizard-testing version 0.8.0 (above) pulls it in transitively,
- // but the latest version of dropwizard-testing does not
- latestDepTestLibrary("org.eclipse.jetty:jetty-webapp:9.+")
- }
- tasks {
- test {
- systemProperty("testLatestDeps", findProperty("testLatestDeps") as Boolean)
- }
- withType<Test>().configureEach {
- // TODO run tests both with and without experimental span attributes
- jvmArgs("-Dotel.instrumentation.jaxrs.experimental-span-attributes=true")
- }
- }
|