1
0
mirror of https://github.com/square/okhttp.git synced 2026-01-14 07:22:20 +03:00

[4.x] Update Okio to 3.2.0 (#7591)

* Update Okio to 3.2.0

This version does the right thing for Kotlin Multiplatform
and Maven.

* Filtering okio-jvm to okio.

Co-authored-by: Jesse Wilson <jwilson@squareup.com>
This commit is contained in:
Yuri Schimke
2022-12-31 00:38:41 +10:00
committed by GitHub
parent e46a200fce
commit 81d34114e2

View File

@@ -17,7 +17,7 @@ buildscript {
'junit': '4.13',
'kotlin': '1.6.20',
'moshi': '1.13.0',
'okio': '3.0.0',
'okio': '3.2.0',
'ktlint': '0.38.0',
'picocli': '4.2.0',
'openjsse': '1.1.0'
@@ -273,6 +273,15 @@ subprojects { project ->
developerConnection = 'scm:git:ssh://git@github.com/square/okhttp.git'
url = 'https://github.com/square/okhttp'
}
withXml {
asNode().dependencies.dependency
.findAll { dependency ->
dependency.artifactId.text() == 'okio-jvm'
}
.each { dependency ->
dependency.artifactId*.value = 'okio'
}
}
}
}
}