compose-lobsters/api/build.gradle.kts
Harsh Shandilya 294052e309
build: remove unnecessary manual dependency decl
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2021-06-10 01:18:29 +05:30

23 lines
611 B
Kotlin

import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm")
id("com.google.devtools.ksp") version "1.5.10-1.0.0-beta01"
}
dependencies {
api(libs.retrofit.lib)
ksp(libs.moshix.ksp)
implementation(libs.moshi.lib)
implementation(libs.retrofit.moshiConverter) { exclude(group = "com.squareup.moshi") }
testImplementation(libs.kotlin.coroutines.core)
testImplementation(kotlin("test-junit"))
testImplementation(libs.testing.mockWebServer)
}
tasks.withType<KotlinCompile> {
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11.toString()
languageVersion = "1.5"
}
}