compose-lobsters/api/build.gradle.kts
Harsh Shandilya fb2005fd83
all: switch to moshi-ksp
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2021-02-28 20:47:41 +05:30

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