Skip to content

Commit dc63e3d

Browse files
authored
Define coroutine dep in versions catalog (#207)
1 parent 4bf4ff3 commit dc63e3d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

core/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ kotlin {
3838
}
3939
appleTest {
4040
dependencies {
41-
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.2")
41+
implementation(libs.kotlinx.coroutines.core)
4242
}
4343
}
4444
}

gradle/libs.versions.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ kover = "0.7.3"
66
bcv = "0.13.2"
77
benchmark = "0.4.9"
88
jmh = "1.36"
9+
coroutines = "1.7.3"
910

1011
[libraries]
1112

1213
kotlinx-benchmark-runtime = { group = "org.jetbrains.kotlinx", name = "kotlinx-benchmark-runtime", version.ref = "benchmark" }
1314
kotlin-gradle-plugin = { group = "org.jetbrains.kotlin", name = "kotlin-gradle-plugin", version.ref = "kotlin" }
14-
15+
kotlinx-coroutines-core = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-core", version.ref = "coroutines" }
1516
[plugins]
1617

1718
dokka = { id = "org.jetbrains.dokka", version.ref = "dokka" }

0 commit comments

Comments
 (0)