fix(api): cleanup dependencies

This commit is contained in:
Harsh Shandilya 2022-10-10 00:25:34 +05:30
parent 4607a68de0
commit 74c265538d
No known key found for this signature in database
2 changed files with 3 additions and 6 deletions

View file

@ -7,13 +7,11 @@ plugins {
dependencies {
api(projects.model)
api(libs.retrofit.lib)
api(libs.retrofit)
api(libs.eithernet)
implementation(libs.kotlinx.serialization.core)
testImplementation(testFixtures(libs.eithernet))
testImplementation(libs.kotlinx.coroutines.core)
testImplementation(kotlin("test-junit"))
testImplementation(libs.kotlinx.coroutines.core)
testImplementation(libs.kotlinx.serialization.json)
testImplementation(libs.retrofit.kotlinxSerializationConverter)
testImplementation(libs.retrofit.mock)
}