File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -29,19 +29,23 @@ repositories {
2929}
3030
3131dependencies {
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
4751java {
Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ object Versions {
1010
1111object 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} "
You can’t perform that action at this time.
0 commit comments