mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 19:57:04 +05:30
14 lines
420 B
Kotlin
14 lines
420 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("com.google.devtools.ksp") version "1.5.30-1.0.0-beta08"
|
|
}
|
|
|
|
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)
|
|
}
|