mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 11:47:04 +05:30
17 lines
498 B
Kotlin
17 lines
498 B
Kotlin
@file:Suppress("DSL_SCOPE_VIOLATION", "UnstableApiUsage")
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("dev.msfjarvis.claw.kotlin-library")
|
|
}
|
|
|
|
dependencies {
|
|
api(projects.model)
|
|
api(libs.retrofit.lib)
|
|
implementation(libs.kotlinx.serialization.core)
|
|
testImplementation(libs.kotlinx.serialization.json)
|
|
testImplementation(libs.kotlin.coroutines.core)
|
|
testImplementation(kotlin("test-junit"))
|
|
testImplementation(libs.retrofit.kotlinxSerializationConverter)
|
|
testImplementation(libs.retrofit.mock)
|
|
}
|