1
0
mirror of https://github.com/square/okhttp.git synced 2025-11-23 06:42:24 +03:00

Adopt Version Catalog and Updates plugin (#7075)

This commit is contained in:
Yuri Schimke
2022-02-15 23:38:32 +00:00
committed by GitHub
parent edcaa9fade
commit 362f53546d
27 changed files with 306 additions and 254 deletions

View File

@@ -46,8 +46,8 @@ android {
}
dependencies {
implementation(Dependencies.kotlinReflect)
implementation(Dependencies.playServicesSafetynet)
implementation(libs.kotlin.reflect)
implementation(libs.playservices.safetynet)
implementation(projects.okhttp)
androidTestImplementation(projects.okhttpTestingSupport) {
@@ -55,25 +55,24 @@ dependencies {
exclude("org.conscrypt", "conscrypt-openjdk-uber")
exclude("software.amazon.cryptools", "AmazonCorrettoCryptoProvider")
}
androidTestImplementation(Dependencies.bouncycastle)
androidTestImplementation(Dependencies.bouncycastletls)
androidTestImplementation(Dependencies.conscryptAndroid)
androidTestImplementation(libs.bouncycastle.bcprov)
androidTestImplementation(libs.bouncycastle.bctls)
androidTestImplementation(libs.conscrypt.android)
androidTestImplementation(projects.mockwebserver3Junit5)
androidTestImplementation(projects.okhttpBrotli)
androidTestImplementation(projects.okhttpDnsoverhttps)
androidTestImplementation(projects.loggingInterceptor)
androidTestImplementation(projects.okhttpSse)
androidTestImplementation(projects.okhttpTestingSupport)
androidTestImplementation(projects.okhttpTls)
androidTestImplementation(Dependencies.androidxExtJunit)
androidTestImplementation(Dependencies.androidxEspressoCore)
androidTestImplementation(Dependencies.httpclient5)
androidTestImplementation(Dependencies.moshi)
androidTestImplementation(Dependencies.moshiKotlin)
androidTestImplementation(Dependencies.okioFakeFileSystem)
androidTestImplementation(libs.androidx.junit)
androidTestImplementation(libs.androidx.espresso.core)
androidTestImplementation(libs.httpcomponents.httpclient5)
androidTestImplementation(libs.squareup.moshi)
androidTestImplementation(libs.squareup.moshi.kotlin)
androidTestImplementation(libs.squareup.okio.fakefilesystem)
androidTestImplementation(Dependencies.androidxTestRunner)
androidTestImplementation(Dependencies.junit5Api)
androidTestImplementation(Dependencies.junit5AndroidCore)
androidTestRuntimeOnly(Dependencies.junit5AndroidRunner)
androidTestImplementation(libs.androidx.test.runner)
androidTestImplementation(libs.junit.jupiter.api)
androidTestImplementation(libs.junit5android.core)
androidTestRuntimeOnly(libs.junit5android.runner)
}