Remove OpenTracing gradle dependency
This commit is contained in:
parent
5bf5950bf7
commit
e06bb1db1f
|
@ -48,12 +48,10 @@ subprojects {Project subProj ->
|
||||||
compile project(':dd-trace-api')
|
compile project(':dd-trace-api')
|
||||||
compile project(':dd-java-agent:agent-tooling')
|
compile project(':dd-java-agent:agent-tooling')
|
||||||
compile deps.bytebuddy
|
compile deps.bytebuddy
|
||||||
compile deps.opentracing
|
|
||||||
if(jdkCompile) {
|
if(jdkCompile) {
|
||||||
"$jdkCompile" project(':dd-trace-api')
|
"$jdkCompile" project(':dd-trace-api')
|
||||||
"$jdkCompile" project(':dd-java-agent:agent-tooling')
|
"$jdkCompile" project(':dd-java-agent:agent-tooling')
|
||||||
"$jdkCompile" deps.bytebuddy
|
"$jdkCompile" deps.bytebuddy
|
||||||
"$jdkCompile" deps.opentracing
|
|
||||||
}
|
}
|
||||||
annotationProcessor deps.autoservice
|
annotationProcessor deps.autoservice
|
||||||
implementation deps.autoservice
|
implementation deps.autoservice
|
||||||
|
@ -80,10 +78,8 @@ dependencies {
|
||||||
|
|
||||||
configurations {
|
configurations {
|
||||||
// exclude bootstrap dependencies from shadowJar
|
// exclude bootstrap dependencies from shadowJar
|
||||||
runtime.exclude module: deps.opentracing
|
|
||||||
runtime.exclude module: deps.slf4j
|
runtime.exclude module: deps.slf4j
|
||||||
runtime.exclude group: 'org.slf4j'
|
runtime.exclude group: 'org.slf4j'
|
||||||
runtime.exclude group: 'io.opentracing'
|
|
||||||
}
|
}
|
||||||
|
|
||||||
shadowJar {
|
shadowJar {
|
||||||
|
|
Loading…
Reference in New Issue