compose-lobsters/api/build.gradle.kts
Harsh Shandilya 420f792290
all: switch to kotlin.test for unit testing
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2021-03-18 23:56:28 +05:30

14 lines
429 B
Kotlin

plugins {
kotlin("jvm")
id("com.google.devtools.ksp") version "1.4.30-1.0.0-alpha05"
`lobsters-plugin`
}
dependencies {
api(Dependencies.ThirdParty.Retrofit.lib)
ksp(Dependencies.ThirdParty.Moshi.ksp)
implementation(Dependencies.ThirdParty.Retrofit.moshi)
testImplementation(Dependencies.Kotlin.Coroutines.core)
testImplementation(kotlin("test-junit"))
testImplementation(Dependencies.Testing.mockWebServer)
}