1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00
anytype-kotlin/domain/build.gradle
Allan Quatermain 7b373339f0
DROID-824 Library | Enhancement | Added reactive changes on library support (#2883)
DROID-824 Library | Enhancement | Added reactive changes on library support
2023-02-02 13:47:37 +03:00

23 lines
No EOL
487 B
Groovy

plugins {
id "kotlin"
id "org.jetbrains.dokka"
}
dependencies {
implementation project(':core-models')
implementation libs.kotlin
implementation libs.coroutines
compileOnly libs.javaxInject
testImplementation project(":test:utils")
testImplementation libs.kotlinTest
testImplementation libs.turbine
testImplementation libs.mockitoKotlin
testImplementation libs.coroutineTesting
testImplementation project(":test:core-models-stub")
}