From d556cfa812167aac84f37fc74d7c2aa807108eb9 Mon Sep 17 00:00:00 2001 From: alexsarrell Date: Fri, 4 Oct 2024 13:58:26 +0300 Subject: [PATCH] routine-VS-5909: inject okhttp3 version to dependency string --- channels/telegram/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/channels/telegram/build.gradle.kts b/channels/telegram/build.gradle.kts index bd777129..47fff45e 100644 --- a/channels/telegram/build.gradle.kts +++ b/channels/telegram/build.gradle.kts @@ -22,6 +22,6 @@ dependencies { 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) + api("com.squareup.okhttp3:okhttp:${Version.okhttp3}") + api("com.squareup.okhttp3:logging-interceptor:${Version.okhttp3}") }