19 lines
No EOL
455 B
Kotlin
19 lines
No EOL
455 B
Kotlin
plugins {
|
|
alias(deps.plugins.kotlin.jvm)
|
|
id("configuration")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.core.utils)
|
|
|
|
implementation(deps.arrow.core)
|
|
implementation(deps.kotlin.coroutines)
|
|
|
|
// region Test
|
|
testImplementation(deps.test.junit5)
|
|
testImplementation(deps.test.mockk)
|
|
testImplementation(deps.test.truth)
|
|
testImplementation(deps.test.coroutine)
|
|
testRuntimeOnly(deps.test.junit5.engine)
|
|
// endregion
|
|
} |