23 lines
No EOL
536 B
Kotlin
23 lines
No EOL
536 B
Kotlin
plugins {
|
|
alias(deps.plugins.kotlin.jvm)
|
|
alias(deps.plugins.kotlin.serialization)
|
|
id("configuration")
|
|
}
|
|
|
|
dependencies {
|
|
api(deps.arrow.core)
|
|
api(deps.arrow.fx)
|
|
api(deps.kotlin.coroutines)
|
|
|
|
implementation(deps.kotlin.serialization)
|
|
|
|
testImplementation(deps.test.coroutine)
|
|
testImplementation(deps.test.junit5)
|
|
testRuntimeOnly(deps.test.junit5.engine)
|
|
testImplementation(deps.test.mockk)
|
|
testImplementation(deps.test.truth)
|
|
}
|
|
|
|
tasks.withType<Test>().configureEach {
|
|
useJUnitPlatform()
|
|
} |