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