Skip to content

Commit

Permalink
Merge pull request #417 from walt-id/refactor/change-http-client-from…
Browse files Browse the repository at this point in the history
…-CIO-to-okhttp

refactor: change http client from CIO to okhttp
  • Loading branch information
chsavvaidis authored May 24, 2024
2 parents 8804b43 + 4284c66 commit a86bd0c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion waltid-crypto/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ kotlin {
implementation("org.bouncycastle:bcpkix-lts8on:2.73.6") // PEM import

// Ktor client
implementation("io.ktor:ktor-client-cio:$ktor_version")
implementation("io.ktor:ktor-client-okhttp:$ktor_version")

// Logging
implementation("org.slf4j:slf4j-simple:2.0.13")
Expand Down
2 changes: 1 addition & 1 deletion waltid-issuer-api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ dependencies {
implementation("io.ktor:ktor-client-serialization-jvm:${Versions.KTOR_VERSION}")
implementation("io.ktor:ktor-client-content-negotiation:${Versions.KTOR_VERSION}")
implementation("io.ktor:ktor-client-json-jvm:${Versions.KTOR_VERSION}")
implementation("io.ktor:ktor-client-cio-jvm:${Versions.KTOR_VERSION}")
implementation("io.ktor:ktor-client-okhttp-jvm:${Versions.KTOR_VERSION}")
implementation("io.ktor:ktor-client-logging-jvm:${Versions.KTOR_VERSION}")


Expand Down
2 changes: 1 addition & 1 deletion waltid-openid4vc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ kotlin {
}
val jvmMain by getting {
dependencies {
implementation("io.ktor:ktor-client-cio:$ktor_version")
implementation("io.ktor:ktor-client-okhttp:$ktor_version")
}
}
val jvmTest by getting {
Expand Down
2 changes: 1 addition & 1 deletion waltid-reporting/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ kotlin {
val jvmMain by getting {
dependencies {
// Ktor client
implementation("io.ktor:ktor-client-cio:$ktor_version")
implementation("io.ktor:ktor-client-okhttp:$ktor_version")

// Logging
implementation("org.slf4j:slf4j-simple:2.0.13")
Expand Down
2 changes: 1 addition & 1 deletion waltid-verifiable-credentials/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ kotlin {
val jvmMain by getting {
dependencies {
// Ktor client
implementation("io.ktor:ktor-client-cio:$ktor_version")
implementation("io.ktor:ktor-client-okhttp:$ktor_version")

// Logging
implementation("org.slf4j:slf4j-simple:2.0.13")
Expand Down
2 changes: 1 addition & 1 deletion waltid-wallet-api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ dependencies {
implementation("io.ktor:ktor-client-serialization-jvm:$ktor_version")
implementation("io.ktor:ktor-client-content-negotiation:$ktor_version")
implementation("io.ktor:ktor-client-json-jvm:$ktor_version")
implementation("io.ktor:ktor-client-cio-jvm:$ktor_version")
implementation("io.ktor:ktor-client-okhttp-jvm:$ktor_version")
implementation("io.ktor:ktor-client-logging-jvm:$ktor_version")

/* -- Kotlin -- */
Expand Down

0 comments on commit a86bd0c

Please sign in to comment.