mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-18 00:57:02 +05:30
14 lines
435 B
Kotlin
14 lines
435 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("com.google.devtools.ksp") version "1.4.30-1.0.0-alpha04"
|
|
`lobsters-plugin`
|
|
}
|
|
|
|
dependencies {
|
|
api(Dependencies.ThirdParty.Retrofit.lib)
|
|
ksp(Dependencies.ThirdParty.Moshi.ksp)
|
|
implementation(Dependencies.ThirdParty.Retrofit.moshi)
|
|
testImplementation(Dependencies.Kotlin.Coroutines.core)
|
|
testImplementation(Dependencies.Testing.junit)
|
|
testImplementation(Dependencies.Testing.mockWebServer)
|
|
}
|