mirror of
https://github.com/anyproto/anytype-kotlin.git
synced 2025-06-09 09:34:59 +09:00

* Tech | Fix | MockDataFactory migration * Tech | Fix | change task for triggering tests in kotlin modules
18 lines
No EOL
623 B
Groovy
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
|
|
} |