Skip to content

Commit 241d545

Browse files
committed
Chore
1 parent ecf8bca commit 241d545

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

api-client/build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@ dependencies {
2424
prefer("1.13.0")
2525
}
2626
}
27+
implementation("com.squareup.okio:okio") {
28+
version {
29+
strictly("[2.5,4)")
30+
prefer("3.1.0")
31+
}
32+
}
2733
implementation("com.squareup.okhttp3:okhttp") {
2834
version {
2935
strictly("[4.9,5)")

build.gradle.kts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ plugins {
1313
}
1414

1515
val dependencyVersions = listOf(
16-
"com.squareup.okio:okio:3.1.0",
1716
"org.apiguardian:apiguardian-api:1.1.2",
1817
"org.jetbrains:annotations:23.0.0",
1918
"org.jetbrains.kotlin:kotlin-reflect:1.6.20",
@@ -25,14 +24,11 @@ val dependencyVersions = listOf(
2524
"org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.1",
2625
"org.junit:junit-bom:5.8.2",
2726
"org.junit.jupiter:junit-jupiter-api:5.8.2",
28-
"org.junit.platform:junit-platform-engine:1.8.2",
29-
"org.junit.platform:junit-platform-launcher:1.8.2",
30-
"org.junit.platform:junit-platform-suite-api:1.8.2",
3127
"org.opentest4j:opentest4j:1.2.0"
3228
)
3329

3430
val dependencyVersionsByGroup = mapOf(
35-
"org.junit.platform" to "1.8.1"
31+
"org.junit.platform" to "1.8.2"
3632
)
3733

3834
subprojects {

0 commit comments

Comments
 (0)