File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 11import org.gradle.api.publish.maven.MavenPublication
2+ import org.jetbrains.kotlin.fir.resolve.withExpectedType
23
34buildscript {
45
@@ -39,6 +40,8 @@ dependencies {
3940
4041 // Coroutines
4142 api(Deps .coroutines)
43+ api(Deps .coroutinesJdk8)
44+ api(Deps .coroutinesSf4j)
4245}
4346
4447java {
Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ object Versions {
1111object Deps {
1212 // Kotlin
1313 const val coroutines = " org.jetbrains.kotlinx:kotlinx-coroutines-core:${Versions .coroutinesVersion} "
14+ const val coroutinesJdk8 = " org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:${Versions .coroutinesVersion} "
15+ const val coroutinesSf4j = " org.jetbrains.kotlinx:kotlinx-coroutines-slf4j:${Versions .coroutinesVersion} "
1416
1517 // OkHttp
1618 const val okhttpBom = " com.squareup.okhttp3:okhttp-bom:${Versions .okhttpBomVersion} "
You can’t perform that action at this time.
0 commit comments