Skip to content

Commit

Permalink
Remove unnecessary version constant (#455)
Browse files Browse the repository at this point in the history
  • Loading branch information
trask authored May 31, 2020
1 parent 35d4f61 commit 015be46
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ ext {

slf4j : "1.7.30",
guava : "20.0", // Last version to support Java 7
okhttp : "3.12.10", // 3.12.x is last version to support Java7

spock : "1.3-groovy-$spockGroovyVer",
groovy : groovyVer,
Expand Down
5 changes: 3 additions & 2 deletions testing/testing.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@ dependencies {
compile deps.testLogging
compile deps.guava

compile group: 'com.squareup.okhttp3', name: 'okhttp', version: '3.11.0' // Last version to support Java7
// okhttp 3.12.x is the last version to support Java7
compile group: 'com.squareup.okhttp3', name: 'okhttp', version: '3.12.12'
compile group: 'com.squareup.okhttp3', name: 'logging-interceptor', version: '3.12.12'

compile group: 'org.eclipse.jetty', name: 'jetty-server', version: '8.0.0.v20110901'
compile group: 'com.squareup.okhttp3', name: 'logging-interceptor', version: versions.okhttp

compile(project(':auto-tooling')) {
// including :opentelemetry-sdk-shaded-for-testing above instead
Expand Down

0 comments on commit 015be46

Please sign in to comment.