mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-18 04:27:02 +05:30
14 lines
439 B
Kotlin
14 lines
439 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
`lobsters-plugin`
|
|
}
|
|
|
|
dependencies {
|
|
api(Dependencies.ThirdParty.Retrofit.lib)
|
|
implementation(project(":database"))
|
|
implementation(Dependencies.ThirdParty.Moshi.moshiMetadataReflect)
|
|
implementation(Dependencies.ThirdParty.Retrofit.moshi)
|
|
testImplementation(Dependencies.Kotlin.Coroutines.core)
|
|
testImplementation(Dependencies.Testing.junit)
|
|
testImplementation(Dependencies.Testing.mockWebServer)
|
|
}
|