From 7324649dc13b217e6de0d815f74f2d3fe38236e8 Mon Sep 17 00:00:00 2001 From: Lauri Tulmin Date: Thu, 10 Oct 2024 10:11:01 +0300 Subject: [PATCH] Limit ktor2 latest dep test version (#12421) --- instrumentation/ktor/ktor-2.0/javaagent/build.gradle.kts | 5 +++++ instrumentation/ktor/ktor-2.0/library/build.gradle.kts | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/instrumentation/ktor/ktor-2.0/javaagent/build.gradle.kts b/instrumentation/ktor/ktor-2.0/javaagent/build.gradle.kts index 0c2fdd249e41..f201b43e6c69 100644 --- a/instrumentation/ktor/ktor-2.0/javaagent/build.gradle.kts +++ b/instrumentation/ktor/ktor-2.0/javaagent/build.gradle.kts @@ -32,6 +32,11 @@ dependencies { testLibrary("io.ktor:ktor-server-netty:$ktorVersion") testLibrary("io.ktor:ktor-client-cio:$ktorVersion") + + latestDepTestLibrary("io.ktor:ktor-client-core:2.+") + latestDepTestLibrary("io.ktor:ktor-server-core:2.+") + latestDepTestLibrary("io.ktor:ktor-server-netty:2.+") + latestDepTestLibrary("io.ktor:ktor-client-cio:2.+") } kotlin { diff --git a/instrumentation/ktor/ktor-2.0/library/build.gradle.kts b/instrumentation/ktor/ktor-2.0/library/build.gradle.kts index c29e1cf733b2..b7817a5866eb 100644 --- a/instrumentation/ktor/ktor-2.0/library/build.gradle.kts +++ b/instrumentation/ktor/ktor-2.0/library/build.gradle.kts @@ -23,6 +23,11 @@ dependencies { testLibrary("io.ktor:ktor-server-netty:$ktorVersion") testLibrary("io.ktor:ktor-client-cio:$ktorVersion") + + latestDepTestLibrary("io.ktor:ktor-client-core:2.+") + latestDepTestLibrary("io.ktor:ktor-server-core:2.+") + latestDepTestLibrary("io.ktor:ktor-server-netty:2.+") + latestDepTestLibrary("io.ktor:ktor-client-cio:2.+") } kotlin {