Skip to content

Commit

Permalink
-Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
erenalpaslan committed Apr 11, 2023
1 parent 8c374a0 commit aa56055
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 7 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,23 @@ repositories {
}

dependencies {
//Kotlin
implementation(Deps.kotlinJdk8)
implementation(Deps.kotlinReflect)

//OkHtpp
api(platform(Deps.okhttpBom))
api(Deps.okhttp)
api(Deps.okhttpLogging)
implementation(Deps.okhttpSSE)
api(Deps.okhttpSSE)

//Gson
api(Deps.gson)

//Coroutines
api(Deps.coroutines)
implementation(Deps.coroutinesJdk8)
implementation(Deps.coroutinesSf4j)
api(Deps.coroutinesJdk8)
api(Deps.coroutinesSf4j)
}

java {
Expand Down
2 changes: 2 additions & 0 deletions buildSrc/src/main/java/Deps.kt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ object Versions {

object Deps {
//Kotlin
const val kotlinJdk8 = "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${Versions.kotlinVersion}"
const val kotlinReflect = "org.jetbrains.kotlin:kotlin-reflect:${Versions.kotlinVersion}"
const val coroutines = "org.jetbrains.kotlinx:kotlinx-coroutines-core:${Versions.coroutinesVersion}"
const val coroutinesJdk8 = "org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:${Versions.coroutinesVersion}"
const val coroutinesSf4j = "org.jetbrains.kotlinx:kotlinx-coroutines-slf4j:${Versions.coroutinesVersion}"
Expand Down

0 comments on commit aa56055

Please sign in to comment.