mirror of
https://github.com/anyproto/anytype-kotlin.git
synced 2025-06-07 21:37:02 +09:00
20 lines
No EOL
491 B
Groovy
20 lines
No EOL
491 B
Groovy
plugins {
|
|
id "kotlin"
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':domain')
|
|
implementation project(':core-models')
|
|
|
|
implementation libs.kotlin
|
|
implementation libs.coroutines
|
|
|
|
compileOnly libs.javaxInject
|
|
|
|
testImplementation project(":test:utils")
|
|
testImplementation project(":test:core-models-stub")
|
|
testImplementation libs.junit
|
|
testImplementation libs.kotlinTest
|
|
testImplementation libs.mockitoKotlin
|
|
testImplementation libs.coroutineTesting
|
|
} |