1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-09 09:34:59 +09:00
anytype-kotlin/data/build.gradle
Sergey Boishtyan a2d2189376
Tech | Fix | Failing CI script (#2248)
* Tech | Fix | MockDataFactory migration

* Tech | Fix | change task for triggering tests in kotlin modules
2022-05-10 13:33:08 +03:00

18 lines
No EOL
623 B
Groovy

apply plugin: 'kotlin'
dependencies {
implementation project(':domain')
implementation project(':core-models')
def applicationDependencies = rootProject.ext.mainApplication
def unitTestDependencies = rootProject.ext.unitTesting
implementation applicationDependencies.kotlin
implementation applicationDependencies.coroutines
testImplementation project(":test:utils")
testImplementation unitTestDependencies.junit
testImplementation unitTestDependencies.kotlinTest
testImplementation unitTestDependencies.mockitoKotlin
testImplementation unitTestDependencies.coroutineTesting
}