Skip to content

Commit

Permalink
update dependency constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
gesellix committed Apr 7, 2021
1 parent cdd3f77 commit 37f2a33
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
6 changes: 1 addition & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,7 @@ val dependencyVersions = listOf(
"org.codehaus.groovy:groovy-sql:2.5.13",
"org.codehaus.groovy:groovy-templates:2.5.13",
"org.codehaus.groovy:groovy-test:2.5.13",
"org.codehaus.groovy:groovy-xml:2.5.13",
"org.squareup.moshi:moshi:1.11.0",
"org.squareup.moshi:moshi-kotlin:1.11.0",
"org.squareup.okhttp3:okhttp:4.9.0",
"org.squareup.okio:okio:2.9.0"
"org.codehaus.groovy:groovy-xml:2.5.13"
)

val dependencyVersionsByGroup = mapOf<String, String>()
Expand Down
6 changes: 3 additions & 3 deletions client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,19 @@ dependencies {
implementation("com.squareup.okhttp3:mockwebserver") {
version {
strictly("[4,5)")
prefer("4.9.0")
prefer("4.9.1")
}
}
api("com.squareup.okhttp3:okhttp") {
version {
strictly("[4,5)")
prefer("4.9.0")
prefer("4.9.1")
}
}
implementation("com.squareup.okio:okio") {
version {
strictly("[2.5,3)")
prefer("2.8.0")
prefer("2.10.0")
}
}
listOf(
Expand Down
2 changes: 1 addition & 1 deletion explore/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies {
implementation("com.squareup.okio:okio") {
version {
strictly("[2.5,3)")
prefer("2.8.0")
prefer("2.10.0")
}
}
listOf(
Expand Down

0 comments on commit 37f2a33

Please sign in to comment.