Skip to content

Commit a3d9aeb

Browse files
build: explicitly specify kotlin-atomicfu dependency
See Kotlin/kotlinx.coroutines#3305
1 parent 751cc3e commit a3d9aeb

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

gradle/libs.versions.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ ktor-client-core = { module = "io.ktor:ktor-client-core", version.ref = "ktor" }
2323
ktor-client-mock = { module = "io.ktor:ktor-client-mock", version.ref = "ktor" }
2424

2525
# org.jetbrains.kotlin - Kotlin
26+
kotlin-atomicfu = { module = "org.jetbrains.kotlin:atomicfu", version.ref = "kotlin" }
2627
kotlin-test-common = { module = "org.jetbrains.kotlin:kotlin-test-common", version.ref = "kotlin" }
2728
kotlin-test-js = { module = "org.jetbrains.kotlin:kotlin-test-js", version.ref = "kotlin" }
2829
kotlin-test-junit5 = { module = "org.jetbrains.kotlin:kotlin-test-junit5", version.ref = "kotlin" }

modules/api-client/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ kotlin {
9494

9595
dependencies {
9696
api(projects.apiTypes)
97+
api(libs.kotlin.atomicfu)
9798
api(libs.kotlinx.coroutines.core)
9899
}
99100
}

0 commit comments

Comments
 (0)