Skip to content

Commit 12adb28

Browse files
committed
-Minor change
1 parent 1fba564 commit 12adb28

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

build.gradle.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import org.gradle.api.publish.maven.MavenPublication
2+
import org.jetbrains.kotlin.fir.resolve.withExpectedType
23

34
buildscript {
45

@@ -39,6 +40,8 @@ dependencies {
3940

4041
//Coroutines
4142
api(Deps.coroutines)
43+
api(Deps.coroutinesJdk8)
44+
api(Deps.coroutinesSf4j)
4245
}
4346

4447
java {

buildSrc/src/main/java/Deps.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ object Versions {
1111
object 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}"

0 commit comments

Comments
 (0)