Skip to content
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ logging = "7.0.13"
slf4j = "2.0.17"
kotest = "6.0.3"
awaitility = "4.3.0"
testcontainers = "1.21.3"

# Samples
mcp-kotlin = "0.7.2"
Expand Down Expand Up @@ -54,6 +55,7 @@ kotlinx-coroutines-test = { group = "org.jetbrains.kotlinx", name = "kotlinx-cor
ktor-client-mock = { group = "io.ktor", name = "ktor-client-mock", version.ref = "ktor" }
ktor-server-test-host = { group = "io.ktor", name = "ktor-server-test-host", version.ref = "ktor" }
slf4j-simple = { group = "org.slf4j", name = "slf4j-simple", version.ref = "slf4j" }
testcontainers = { group = "org.testcontainers", name = "testcontainers", version.ref = "testcontainers" }

# Samples
ktor-client-cio = { group = "io.ktor", name = "ktor-client-cio", version.ref = "ktor" }
Expand Down
1 change: 1 addition & 0 deletions kotlin-sdk-test/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ kotlin {
dependencies {
implementation(kotlin("test-junit5"))
implementation(libs.awaitility)
implementation(libs.testcontainers)
runtimeOnly(libs.slf4j.simple)
}
}
Expand Down
Loading
Loading