1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- 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.apache.cxf")
- module.set("cxf-rt-frontend-jaxrs")
- versions.set("[3.2,4)")
- extraDependency("javax.servlet:javax.servlet-api:3.1.0")
- }
- pass {
- group.set("org.apache.tomee")
- module.set("openejb-cxf-rs")
- // earlier versions of tomee use cxf older than 3.2
- versions.set("(8,)")
- 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.apache.cxf:cxf-rt-frontend-jaxrs:3.2.0")
- implementation(project(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-common:javaagent"))
- testInstrumentation(project(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-annotations:javaagent"))
- testInstrumentation(project(":instrumentation:servlet:servlet-3.0:javaagent"))
- testInstrumentation(project(":instrumentation:jetty:jetty-8.0:javaagent"))
- testImplementation(project(":instrumentation:jaxrs:jaxrs-2.0:jaxrs-2.0-common:testing"))
- testImplementation("javax.xml.bind:jaxb-api:2.2.3")
- testImplementation("org.eclipse.jetty:jetty-webapp:9.4.6.v20170531")
- testLibrary("org.apache.cxf:cxf-rt-transports-http-jetty:3.2.0")
- testLibrary("org.apache.cxf:cxf-rt-ws-policy:3.2.0")
- latestDepTestLibrary("org.eclipse.jetty:jetty-webapp:9.+")
- latestDepTestLibrary("org.apache.cxf:cxf-rt-frontend-jaxrs:3.+")
- latestDepTestLibrary("org.apache.cxf:cxf-rt-transports-http-jetty:3.+")
- latestDepTestLibrary("org.apache.cxf:cxf-rt-ws-policy:3.+")
- }
- tasks.withType<Test>().configureEach {
- // TODO run tests both with and without experimental span attributes
- jvmArgs("-Dotel.instrumentation.jaxrs.experimental-span-attributes=true")
- }
|