Skip to content

Commit

Permalink
Require okio >= 3.x
Browse files Browse the repository at this point in the history
Explicitly using okio-jvm makes the artifacts Maven-compatible.

Relates to gesellix/docker-client#245
  • Loading branch information
gesellix committed May 3, 2022
1 parent 6b52038 commit c90d76f
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,15 @@ dependencies {
}
}
}
implementation("com.squareup.okio:okio") {
version {
strictly("[2.5,4)")
prefer("3.1.0")
listOf(
"com.squareup.okio:okio",
"com.squareup.okio:okio-jvm"
).forEach {
implementation(it) {
version {
strictly("[3,4)")
prefer("3.1.0")
}
}
}
}
Expand Down

0 comments on commit c90d76f

Please sign in to comment.