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

Commit

Permalink
Define okhttp version in top level build.gradle, along with other dep…
Browse files Browse the repository at this point in the history
…endencies

Signed-off-by: Gary Brown <[email protected]>
  • Loading branch information
objectiser committed Apr 19, 2018
1 parent acb2a24 commit 09177f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ ext.slf4jVersion = getProperty('slf4jVersion','1.7.25')
ext.gsonVersion = getProperty('gsonVersion','2.8.2')
ext.tracerResolverVersion = getProperty('tracerResolverVersion','0.1.4')
ext.micrometerVersion = getProperty('micrometerVersion','1.0.0')
ext.okhttpVersion = getProperty('okhttpVersion','3.9.0')

ext.junitVersion = '4.12'
ext.mockitoVersion = '2.12.0'
Expand Down
2 changes: 1 addition & 1 deletion jaeger-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies {
compile group: 'io.opentracing', name: 'opentracing-util', version: opentracingVersion
compile group: 'com.google.code.gson', name: 'gson', version: gsonVersion
compile group: 'org.slf4j', name: 'slf4j-api', version: slf4jVersion
compile group: 'com.squareup.okhttp3', name: 'okhttp', version: '3.9.0'
compile group: 'com.squareup.okhttp3', name: 'okhttp', version: okhttpVersion

// Testing frameworks
testCompile project(path: ':jaeger-thrift', configuration: 'tests')
Expand Down

0 comments on commit 09177f4

Please sign in to comment.