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 a847534 commit 6f290bc
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,17 @@ dependencies {
}
}
}
listOf(
"com.squareup.okio:okio",
"com.squareup.okio:okio-jvm"
).forEach {
implementation(it) {
version {
strictly("[3,4)")
prefer("3.1.0")
}
}
}
}
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.6.21")
implementation("org.jetbrains.kotlin:kotlin-reflect:1.6.21")
Expand Down

0 comments on commit 6f290bc

Please sign in to comment.