Skip to content
Open
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions cobs/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ dependencies {
// published AAR/POM gains NO runtime dependency: consumers who use the Flow API
// already have kotlinx-coroutines on their classpath, and those who don't pay
// nothing. The test source set needs it (and coroutines-test) at runtime.
compileOnly("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0")
compileOnly("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0")
testImplementation("junit:junit:4.13.2")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.11.0")
}

publishing {
Expand Down
Loading