15 lines
377 B
Kotlin
15 lines
377 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("com.google.devtools.ksp")
|
|
`lobsters-plugin`
|
|
}
|
|
|
|
dependencies {
|
|
api(libs.thirdparty.retrofit.lib)
|
|
ksp(libs.thirdparty.moshix.ksp)
|
|
implementation(libs.thirdparty.retrofit.moshiConverter)
|
|
testImplementation(libs.kotlin.coroutines.core)
|
|
testImplementation(libs.testing.kotlintest.junit)
|
|
testImplementation(libs.testing.mockWebServer)
|
|
}
|