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

Commit

Permalink
Fix jaeger-client dependency jaeger-thrift no-shadow artifact
Browse files Browse the repository at this point in the history
Signed-off-by: Juraci Paixão Kröhling <juraci@kroehling.de>
  • Loading branch information
jpkrohling committed Jul 11, 2018
1 parent f3f6fdd commit 18496ff
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion jaeger-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,16 @@ description = 'Convenience module to be used by instrumented applications'

dependencies {
// otherwise, we get the non-shaded version, which will fail at runtime due to missing classes
// we want this one to propagate to the final pom that will be used by consumers
compile group: 'io.jaegertracing', name: 'jaeger-thrift', version: developmentVersion

// for the other projects, we can add the dependency on the projects themselves
// we need this for the build
compileOnly project(':jaeger-thrift')
compile project(':jaeger-core')
compile project(':jaeger-thrift')
compile project(':jaeger-tracerresolver')

// and this for the tests...
testCompile project(':jaeger-thrift')
testCompile group: 'junit', name: 'junit', version: junitVersion
}

0 comments on commit 18496ff

Please sign in to comment.