mirror of
https://github.com/anyproto/anytype-kotlin.git
synced 2025-06-08 05:47:05 +09:00
23 lines
No EOL
487 B
Groovy
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")
|
|
} |