Skip to content

Commit

Permalink
Use dependencySets
Browse files Browse the repository at this point in the history
  • Loading branch information
larsgrefer committed Sep 14, 2018
1 parent 68940ff commit aa58023
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,15 @@ allprojects {
}

dependencies {
dependency 'com.squareup.okhttp:okhttp:2.7.5'
dependency 'com.squareup.okhttp:logging-interceptor:2.7.5'
dependencySet('com.squareup.okhttp:2.7.5') {
entry 'okhttp'
entry 'logging-interceptor'
}

dependency 'com.squareup.okhttp3:okhttp:3.11.0'
dependency 'com.squareup.okhttp3:logging-interceptor:3.11.0'
dependencySet('com.squareup.okhttp3:3.11.0') {
entry 'okhttp'
entry 'logging-interceptor'
}
}
}

Expand Down

0 comments on commit aa58023

Please sign in to comment.