summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Wilson <jwilson@squareup.com>2024-04-01 10:20:08 -0400
committerGitHub <noreply@github.com>2024-04-01 10:20:08 -0400
commit6874f118141df20f09815955509592349eb357c8 (patch)
treeae80ffcdcec0d5a1288844c8bd17ff17acd668b8
parent05a81b346d5f27d5a61c5ed13021e4eea67d1f0d (diff)
downloadokhttp4-6874f118141df20f09815955509592349eb357c8.tar.gz
Don't depend on external OkHttp from within OkHttp (#8323)
IntelliJ grabs the wrong one which is quite confusing.
-rw-r--r--samples/tlssurvey/build.gradle.kts4
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/tlssurvey/build.gradle.kts b/samples/tlssurvey/build.gradle.kts
index f681c154b..586fbfbbf 100644
--- a/samples/tlssurvey/build.gradle.kts
+++ b/samples/tlssurvey/build.gradle.kts
@@ -9,8 +9,8 @@ application {
}
dependencies {
- implementation("com.squareup.okhttp3:okhttp:5.0.0-alpha.10")
- implementation("com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.12")
+ implementation(projects.okhttp)
+ implementation(projects.okhttpCoroutines)
implementation(libs.conscrypt.openjdk)
implementation("com.squareup.retrofit2:retrofit:2.11.0")