mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-18 03:17:03 +05:30
14 lines
544 B
Groovy
14 lines
544 B
Groovy
plugins {
|
|
id 'kotlin-kapt'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(":model")
|
|
implementation "com.squareup.retrofit2:retrofit:$retrofit_version"
|
|
implementation "com.squareup.retrofit2:converter-moshi:$retrofit_version"
|
|
kaptTest "com.squareup.moshi:moshi-kotlin-codegen:$moshi_version"
|
|
testImplementation "junit:junit:$junit_version"
|
|
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version"
|
|
//noinspection GradleDependency
|
|
testImplementation "com.squareup.okhttp3:mockwebserver:$okhttp_version"
|
|
}
|