compose-lobsters/api/build.gradle.kts
Harsh Shandilya 0eba1e26fb
gradle: migrate plugin dependencies to version catalogs
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2022-03-25 15:04:38 +05:30

14 lines
504 B
Kotlin

@file:Suppress("DSL_SCOPE_VIOLATION", "UnstableApiUsage")
plugins { alias(libs.plugins.kotlin.jvm) }
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) { isTransitive = false }
testImplementation(libs.testing.mockWebServer)
}