Skip to content

Commit

Permalink
routine-VS-5909: Bump retrofit and okhttp version
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsarrell committed Oct 2, 2024
1 parent 2fa32bf commit 0a58aab
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {

allprojects {
group = "com.just-ai.jaicf"
version = "1.3.6"
version = "1.3.7-SNAPSHOT"

repositories {
mavenCentral()
Expand Down
1 change: 1 addition & 0 deletions buildSrc/src/main/kotlin/Version.kt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ object Version {
const val jUnit = "5.6.0"
const val jetty = "9.4.3.v20170317"

const val okhttp3 = "4.9.3"
const val ktor = "1.5.1"
const val serializationRuntime = "1.0.1"
const val coroutinesCore = "1.4.2"
Expand Down
9 changes: 7 additions & 2 deletions channels/telegram/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ dependencies {
exclude("org.jetbrains.kotlin", "kotlin-stdlib")
exclude("com.squareup.okhttp3", "okhttp")
exclude("com.squareup.okhttp3", "logging-interceptor")
exclude("com.squareup.retrofit2", "retrofit")
}
api("com.squareup.okhttp3:okhttp:3.14.0")
api("com.squareup.okhttp3:logging-interceptor:3.14.0")
api("com.squareup.retrofit2:retrofit:2.5.0") {
exclude("com.squareup.okhttp3", "okhttp")
exclude("com.squareup.okhttp3", "logging-interceptor")
}
api("com.squareup.okhttp3:okhttp", Version.okhttp3)
api("com.squareup.okhttp3:logging-interceptor", Version.okhttp3)
}

0 comments on commit 0a58aab

Please sign in to comment.