Skip to content

Commit 7324649

Browse files
authored
Limit ktor2 latest dep test version (open-telemetry#12421)
1 parent 8f18c30 commit 7324649

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

instrumentation/ktor/ktor-2.0/javaagent/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ dependencies {
3232

3333
testLibrary("io.ktor:ktor-server-netty:$ktorVersion")
3434
testLibrary("io.ktor:ktor-client-cio:$ktorVersion")
35+
36+
latestDepTestLibrary("io.ktor:ktor-client-core:2.+")
37+
latestDepTestLibrary("io.ktor:ktor-server-core:2.+")
38+
latestDepTestLibrary("io.ktor:ktor-server-netty:2.+")
39+
latestDepTestLibrary("io.ktor:ktor-client-cio:2.+")
3540
}
3641

3742
kotlin {

instrumentation/ktor/ktor-2.0/library/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ dependencies {
2323

2424
testLibrary("io.ktor:ktor-server-netty:$ktorVersion")
2525
testLibrary("io.ktor:ktor-client-cio:$ktorVersion")
26+
27+
latestDepTestLibrary("io.ktor:ktor-client-core:2.+")
28+
latestDepTestLibrary("io.ktor:ktor-server-core:2.+")
29+
latestDepTestLibrary("io.ktor:ktor-server-netty:2.+")
30+
latestDepTestLibrary("io.ktor:ktor-client-cio:2.+")
2631
}
2732

2833
kotlin {

0 commit comments

Comments
 (0)