compose-lobsters/api/build.gradle.kts
Harsh Shandilya ff3b4c7a27
api: update KSP for Gradle 7.0-RC1 support
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2021-03-29 04:20:14 +05:30

14 lines
429 B
Kotlin

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