compose-lobsters/api/build.gradle.kts
Harsh Shandilya 24990cde08 all: bump dependencies
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2021-04-08 06:15:33 +05:30

14 lines
431 B
Kotlin

plugins {
kotlin("jvm")
id("com.google.devtools.ksp") version Dependencies.KSP_VERSION
`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)
}