Skip to content

Commit aa56055

Browse files
committed
-Minor changes
1 parent 8c374a0 commit aa56055

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

build.gradle.kts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,23 @@ repositories {
2929
}
3030

3131
dependencies {
32+
//Kotlin
33+
implementation(Deps.kotlinJdk8)
34+
implementation(Deps.kotlinReflect)
35+
3236
//OkHtpp
3337
api(platform(Deps.okhttpBom))
3438
api(Deps.okhttp)
3539
api(Deps.okhttpLogging)
36-
implementation(Deps.okhttpSSE)
40+
api(Deps.okhttpSSE)
3741

3842
//Gson
3943
api(Deps.gson)
4044

4145
//Coroutines
4246
api(Deps.coroutines)
43-
implementation(Deps.coroutinesJdk8)
44-
implementation(Deps.coroutinesSf4j)
47+
api(Deps.coroutinesJdk8)
48+
api(Deps.coroutinesSf4j)
4549
}
4650

4751
java {

buildSrc/src/main/java/Deps.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ object Versions {
1010

1111
object Deps {
1212
//Kotlin
13+
const val kotlinJdk8 = "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${Versions.kotlinVersion}"
14+
const val kotlinReflect = "org.jetbrains.kotlin:kotlin-reflect:${Versions.kotlinVersion}"
1315
const val coroutines = "org.jetbrains.kotlinx:kotlinx-coroutines-core:${Versions.coroutinesVersion}"
1416
const val coroutinesJdk8 = "org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:${Versions.coroutinesVersion}"
1517
const val coroutinesSf4j = "org.jetbrains.kotlinx:kotlinx-coroutines-slf4j:${Versions.coroutinesVersion}"

0 commit comments

Comments
 (0)