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

Commit

Permalink
Adjust thrift shadow configuration and version
Browse files Browse the repository at this point in the history
Signed-off-by: Juraci Paixão Kröhling <[email protected]>
  • Loading branch information
jpkrohling committed Jun 19, 2018
1 parent 8b87ab7 commit 331bc04
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ext.developmentVersion = getProperty('developmentVersion','0.29.1-SNAPSHOT')

ext.opentracingVersion = getProperty('opentracingVersion','0.31.0')
ext.guavaVersion = getProperty('guavaVersion','18.0')
ext.apacheThriftVersion = getProperty('apacheThriftVersion','0.9.2')
ext.apacheThriftVersion = getProperty('apacheThriftVersion','0.11.0')
ext.jerseyVersion = getProperty('jerseyVersion','2.22.2')
ext.slf4jVersion = getProperty('slf4jVersion','1.7.25')
ext.gsonVersion = getProperty('gsonVersion','2.8.2')
Expand Down
7 changes: 5 additions & 2 deletions jaeger-thrift/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,11 @@ checkstyleTest.enabled = false

shadowJar {
baseName = 'jaeger-thrift'
relocate 'org.apache.thrift', 'org.shadow.apache.thrift92'
relocate 'okhttp', 'jaeger.okhttp'
relocate 'com.google.gson' , 'jaeger.com.google.gson'
relocate 'com.twitter' , 'jaeger.com.twitter'
relocate 'okhttp' , 'jaeger.okhttp'
relocate 'okio' , 'jaeger.okio'
relocate 'org.apache' , 'jaeger.org.apache'
classifier 'shadow'
}

Expand Down
2 changes: 1 addition & 1 deletion travis/docker-thrift/thrift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

pwd=$(dirname ${PWD})

THRIFT_VER=0.9.2
THRIFT_VER=0.11.0
THRIFT_IMG=thrift:${THRIFT_VER}
THRIFT="docker run --rm -u $(id -u) -v ${pwd}:/data ${THRIFT_IMG} thrift"

Expand Down

0 comments on commit 331bc04

Please sign in to comment.