Skip to content

Commit cc4862d

Browse files
committed
Disable usage of forked OkHttp
1 parent ad8bb88 commit cc4862d

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

build.gradle.kts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ val dependencyVersionsByGroup = mapOf(
4040
subprojects {
4141
repositories {
4242
// mavenLocal()
43-
listOf(
44-
"gesellix/okhttp",
43+
listOf<String>(
44+
// "gesellix/okhttp",
4545
// "docker-client/*",
4646
).forEach { slug ->
4747
// fun findProperty(s: String) = project.findProperty(s) as String?
@@ -70,10 +70,10 @@ allprojects {
7070
useVersion(forcedVersion)
7171
}
7272
}
73-
dependencySubstitution {
74-
substitute(module("com.squareup.okhttp3:okhttp-jvm"))
75-
.using(module("de.gesellix.okhttp3-forked:okhttp-jvm:${libs.versions.okhttp.get()}"))
76-
}
73+
// dependencySubstitution {
74+
// substitute(module("com.squareup.okhttp3:okhttp-jvm"))
75+
// .using(module("de.gesellix.okhttp3-forked:okhttp-jvm:${libs.versions.okhttp.get()}"))
76+
// }
7777
}
7878
}
7979
}

gradle/libs.versions.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ logback = "1.3.15"
77
logbackVersionrange = "[1.2,2)"
88
moshi = "1.15.2"
99
moshiVersionrange = "[1.12.0,2)"
10-
okhttp = "5.2.0-2025-08-02T07-52-48"
11-
#okhttp = "5.1.0"
10+
#okhttp = "5.2.0-2025-08-02T07-52-48"
11+
okhttp = "5.2.0"
1212
okhttpVersionrange = "[4,6)"
1313
okio = "3.16.0"
1414
okioVersionrange = "[3,4)"
@@ -31,10 +31,10 @@ kotlinTest = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotli
3131
logback = { module = "ch.qos.logback:logback-classic", version.ref = "logback" }
3232
moshi = { module = "com.squareup.moshi:moshi", version.ref = "moshi" }
3333
moshiKotlin = { module = "com.squareup.moshi:moshi-kotlin", version.ref = "moshi" }
34-
okhttp = { module = "de.gesellix.okhttp3-forked:okhttp", version.ref = "okhttp" }
35-
#okhttp = { module = "com.squareup.okhttp3:okhttp", version.ref = "okhttp" }
36-
okhttpMockwebserver = { module = "de.gesellix.okhttp3-forked:mockwebserver3-junit4", version.ref = "okhttp" }
37-
#okhttpMockwebserver = { module = "com.squareup.okhttp3:mockwebserver", version.ref = "okhttp" }
34+
#okhttp = { module = "de.gesellix.okhttp3-forked:okhttp", version.ref = "okhttp" }
35+
okhttp = { module = "com.squareup.okhttp3:okhttp", version.ref = "okhttp" }
36+
#okhttpMockwebserver = { module = "de.gesellix.okhttp3-forked:mockwebserver3-junit4", version.ref = "okhttp" }
37+
okhttpMockwebserver = { module = "com.squareup.okhttp3:mockwebserver", version.ref = "okhttp" }
3838
okio = { module = "com.squareup.okio:okio", version.ref = "okio" }
3939
okioJvm = { module = "com.squareup.okio:okio-jvm", version.ref = "okio" }
4040
slf4j = { module = "org.slf4j:slf4j-api", version.ref = "slf4j" }

0 commit comments

Comments
 (0)