Skip to content

Commit 1fba564

Browse files
committed
-Minor changes
1 parent a87f0f8 commit 1fba564

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

build.gradle.kts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ buildscript {
77
gradlePluginPortal()
88
}
99
dependencies {
10+
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlinVersion}")
1011
}
1112
}
1213

@@ -28,18 +29,16 @@ repositories {
2829

2930
dependencies {
3031
//OkHtpp
31-
implementation(platform(Deps.okhttpBom))
32+
api(platform(Deps.okhttpBom))
3233
api(Deps.okhttp)
3334
api(Deps.okhttpLogging)
3435
implementation(Deps.okhttpSSE)
3536

3637
//Gson
37-
implementation(Deps.gson)
38+
api(Deps.gson)
3839

3940
//Coroutines
40-
api(Deps.coroutines) {
41-
this.isTransitive = true
42-
}
41+
api(Deps.coroutines)
4342
}
4443

4544
java {

0 commit comments

Comments
 (0)