VancedManager/core-mvi/build.gradle.kts

22 lines
619 B
Plaintext
Raw Permalink Normal View History

2021-01-10 10:11:04 +00:00
plugins {
kotlin("jvm")
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
dependencies {
implementation(kotlin("stdlib"))
2021-10-08 12:17:08 +00:00
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2")
2021-01-10 10:11:04 +00:00
2021-10-08 18:57:08 +00:00
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.2-native-mt")
2021-10-08 12:17:08 +00:00
val kotestVersion = "4.4.3"
testImplementation("io.kotest:kotest-runner-junit5:$kotestVersion")
testImplementation("io.kotest:kotest-assertions-core:$kotestVersion")
testImplementation("io.kotest:kotest-property:$kotestVersion")
2021-10-08 18:57:08 +00:00
testImplementation("io.mockk:mockk:1.12.0")
2021-01-10 10:11:04 +00:00
}