build: remove unnecessary manual dependency decl

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2021-06-07 10:57:42 +05:30
parent 23b2e635bb
commit 294052e309
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
2 changed files with 1 additions and 3 deletions

View file

@ -11,7 +11,7 @@ dependencies {
implementation(libs.moshi.lib) implementation(libs.moshi.lib)
implementation(libs.retrofit.moshiConverter) { exclude(group = "com.squareup.moshi") } implementation(libs.retrofit.moshiConverter) { exclude(group = "com.squareup.moshi") }
testImplementation(libs.kotlin.coroutines.core) testImplementation(libs.kotlin.coroutines.core)
testImplementation(libs.testing.kotlintest.junit) testImplementation(kotlin("test-junit"))
testImplementation(libs.testing.mockWebServer) testImplementation(libs.testing.mockWebServer)
} }

View file

@ -1,6 +1,5 @@
[versions] [versions]
coroutines = "1.5.0" coroutines = "1.5.0"
kotlin = "1.5.10"
moshix = "0.11.2" moshix = "0.11.2"
retrofit = "2.9.0" retrofit = "2.9.0"
sqldelight = "1.5.0" sqldelight = "1.5.0"
@ -26,5 +25,4 @@ retrofit-moshiConverter = { module = "com.squareup.retrofit2:converter-moshi", v
sqldelight-jvmDriver = { module = "com.squareup.sqldelight:sqlite-driver", version.ref = "sqldelight" } sqldelight-jvmDriver = { module = "com.squareup.sqldelight:sqlite-driver", version.ref = "sqldelight" }
sqldelight-androidDriver = { module = "com.squareup.sqldelight:android-driver", version.ref = "sqldelight" } sqldelight-androidDriver = { module = "com.squareup.sqldelight:android-driver", version.ref = "sqldelight" }
testing-kotlintest-junit = { module = "org.jetbrains.kotlin:kotlin-test-junit", version.ref = "kotlin" }
testing-mockWebServer = "com.squareup.okhttp3:mockwebserver3-junit4:5.0.0-alpha.2" testing-mockWebServer = "com.squareup.okhttp3:mockwebserver3-junit4:5.0.0-alpha.2"