Skip to content
This repository has been archived by the owner on Jul 1, 2022. It is now read-only.

Commit

Permalink
exclude apache httpclient deps from libthrift (#596)
Browse files Browse the repository at this point in the history
Partially address #516

Signed-off-by: Thomas Weißschuh <thomas.weissschuh@de.amadeus.com>
  • Loading branch information
t-8ch authored and yurishkuro committed Mar 1, 2019
1 parent 167ecd6 commit df3f205
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 df3f205

Please sign in to comment.