From 4eae61e7a6af03196ddbcc8d8609cc1413146cc6 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Fri, 8 Oct 2021 21:57:08 +0300 Subject: [PATCH] update deps --- app/build.gradle.kts | 4 ++-- core-mvi/build.gradle.kts | 4 ++-- feature-home/build.gradle.kts | 8 ++++---- library-network/build.gradle.kts | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 2efb3777..478a1849 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -109,7 +109,7 @@ dependencies { implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0") implementation("androidx.work:work-runtime-ktx:2.7.0-rc01") - implementation("com.github.madrapps:pikolo:2.0.1") + implementation("com.github.madrapps:pikolo:2.0.2") implementation("com.google.android.material:material:1.5.0-alpha04") // JSON parser @@ -119,7 +119,7 @@ dependencies { implementation("com.github.kittinunf.fuel:fuel:2.3.1") implementation("com.github.kittinunf.fuel:fuel-coroutines:2.3.1") implementation("com.github.kittinunf.fuel:fuel-json:2.3.1") - implementation("com.squareup.okhttp3:logging-interceptor:4.9.1") + implementation("com.squareup.okhttp3:logging-interceptor:4.9.2") implementation("com.squareup.retrofit2:retrofit:2.9.0") // Root permissions diff --git a/core-mvi/build.gradle.kts b/core-mvi/build.gradle.kts index dd0a0744..92bf6fa6 100644 --- a/core-mvi/build.gradle.kts +++ b/core-mvi/build.gradle.kts @@ -11,12 +11,12 @@ dependencies { implementation(kotlin("stdlib")) implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2") - testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.0") + testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.2-native-mt") val kotestVersion = "4.4.3" testImplementation("io.kotest:kotest-runner-junit5:$kotestVersion") testImplementation("io.kotest:kotest-assertions-core:$kotestVersion") testImplementation("io.kotest:kotest-property:$kotestVersion") - testImplementation("io.mockk:mockk:1.10.6") + testImplementation("io.mockk:mockk:1.12.0") } \ No newline at end of file diff --git a/feature-home/build.gradle.kts b/feature-home/build.gradle.kts index b131f750..9b538af2 100644 --- a/feature-home/build.gradle.kts +++ b/feature-home/build.gradle.kts @@ -61,23 +61,23 @@ dependencies { implementation("com.squareup.retrofit2:retrofit:2.9.0") - val moshiVersion = "1.11.0" + val moshiVersion = "1.12.0" implementation("com.squareup.moshi:moshi-kotlin:$moshiVersion") implementation("com.squareup.moshi:moshi-kotlin-codegen:$moshiVersion") implementation("com.squareup.moshi:moshi-adapters:$moshiVersion") - implementation("com.squareup.okhttp3:logging-interceptor:4.9.1") + implementation("com.squareup.okhttp3:logging-interceptor:4.9.2") implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2") implementation("io.insert-koin:koin-android:3.1.2") - val kotestVersion = "4.4.3" + val kotestVersion = "5.0.0.M2" testImplementation("io.kotest:kotest-runner-junit5:$kotestVersion") testImplementation("io.kotest:kotest-assertions-core:$kotestVersion") testImplementation("io.kotest:kotest-property:$kotestVersion") - val mockkVersion = "1.10.6" + val mockkVersion = "1.12.0" testImplementation("io.mockk:mockk:$mockkVersion") androidTestImplementation("io.mockk:mockk-android:$mockkVersion") diff --git a/library-network/build.gradle.kts b/library-network/build.gradle.kts index c4c5e05d..5aaf973b 100644 --- a/library-network/build.gradle.kts +++ b/library-network/build.gradle.kts @@ -41,12 +41,12 @@ dependencies { implementation("com.squareup.retrofit2:retrofit:$retrofitVersion") implementation("com.squareup.retrofit2:converter-moshi:$retrofitVersion") - val moshiVersion = "1.11.0" + val moshiVersion = "1.12.0" implementation("com.squareup.moshi:moshi-kotlin:$moshiVersion") implementation("com.squareup.moshi:moshi-kotlin-codegen:$moshiVersion") implementation("com.squareup.moshi:moshi-adapters:$moshiVersion") - implementation("com.squareup.okhttp3:logging-interceptor:4.9.1") + implementation("com.squareup.okhttp3:logging-interceptor:4.9.2") implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2")