Skip to content

Commit

Permalink
exclude apache httpclient deps from libthrift
Browse files Browse the repository at this point in the history
See jaegertracing#516

Signed-off-by: Thomas Weißschuh <thomas.weissschuh@de.amadeus.com>
  • Loading branch information
t-8ch committed Mar 1, 2019
1 parent 167ecd6 commit 247bacf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion jaeger-thrift/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ dependencies {
compile project(':jaeger-core')

compile group: 'org.slf4j', name: 'slf4j-api', version: slf4jVersion
compile group: 'org.apache.thrift', name: 'libthrift', version: apacheThriftVersion
compile(group: 'org.apache.thrift', name: 'libthrift', version: apacheThriftVersion) {
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
exclude group: 'org.apache.httpcomponents', module: 'httpcore'
}
compile group: 'com.squareup.okhttp3', name: 'okhttp', version: okhttpVersion

testCompile group: 'junit', name: 'junit', version: junitVersion
Expand Down

0 comments on commit 247bacf

Please sign in to comment.