Files
2021-04-23 10:07:44 +05:30

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)
}