diff options
author | Joffrey Bion <joffrey.bion@gmail.com> | 2023-04-30 23:20:51 +0200 |
---|---|---|
committer | Joffrey Bion <joffrey.bion@gmail.com> | 2023-04-30 23:42:07 +0200 |
commit | 57100e24f47250acc0e872b751732faa2e3ff1ba (patch) | |
tree | 20bbd67e80bfc06f2205268f96ee570b38c4a917 /sw-ui/build.gradle.kts | |
parent | Remove unnecessary GlobalScope usage (diff) | |
download | seven-wonders-57100e24f47250acc0e872b751732faa2e3ff1ba.tar.gz seven-wonders-57100e24f47250acc0e872b751732faa2e3ff1ba.tar.bz2 seven-wonders-57100e24f47250acc0e872b751732faa2e3ff1ba.zip |
Use kotlinx-coroutines-test in sw-ui
Diffstat (limited to 'sw-ui/build.gradle.kts')
-rw-r--r-- | sw-ui/build.gradle.kts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sw-ui/build.gradle.kts b/sw-ui/build.gradle.kts index 6fb7d8b8..bb2d0701 100644 --- a/sw-ui/build.gradle.kts +++ b/sw-ui/build.gradle.kts @@ -15,6 +15,9 @@ kotlin { dependencies { implementation(projects.swClient) + implementation(libs.kotlinx.coroutines.core) + implementation(libs.kotlinx.coroutines.test) + implementation(project.dependencies.enforcedPlatform(libs.kotlin.wrappers.bom)) implementation(libs.kotlin.wrappers.react.base) implementation(libs.kotlin.wrappers.react.dom) |