anytype-kotlin-wild/data/build.gradle

18 lines
457 B
Groovy

plugins {
id "kotlin"
}
dependencies {
implementation project(':domain')
implementation project(':core-models')
implementation libs.kotlin
implementation libs.coroutines
testImplementation project(":test:utils")
testImplementation project(":test:core-models-stub")
testImplementation libs.junit
testImplementation libs.kotlinTest
testImplementation libs.mockitoKotlin
testImplementation libs.coroutineTesting
}