all: tweak dependency namespacing

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2021-06-06 16:37:09 +05:30
parent 4168fe3875
commit 23b2e635bb
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
4 changed files with 20 additions and 20 deletions

View file

@ -6,10 +6,10 @@ plugins {
}
dependencies {
api(libs.thirdparty.retrofit.lib)
ksp(libs.thirdparty.moshix.ksp)
implementation(libs.thirdparty.moshi.lib)
implementation(libs.thirdparty.retrofit.moshiConverter) { exclude(group = "com.squareup.moshi") }
api(libs.retrofit.lib)
ksp(libs.moshix.ksp)
implementation(libs.moshi.lib)
implementation(libs.retrofit.moshiConverter) { exclude(group = "com.squareup.moshi") }
testImplementation(libs.kotlin.coroutines.core)
testImplementation(libs.testing.kotlintest.junit)
testImplementation(libs.testing.mockWebServer)