VancedManager/core-mvi/build.gradle

23 lines
626 B
Groovy
Raw Normal View History

2020-11-28 22:22:24 +00:00
plugins {
id 'org.jetbrains.kotlin.jvm'
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
2020-11-30 09:08:14 +00:00
test {
useJUnitPlatform()
}
2020-11-28 22:22:24 +00:00
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1"
2020-11-30 09:08:14 +00:00
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.1'
testImplementation 'io.kotest:kotest-runner-junit5:4.3.1'
testImplementation 'io.kotest:kotest-assertions-core:4.3.1'
testImplementation 'io.kotest:kotest-property:4.3.1'
testImplementation "io.mockk:mockk:1.10.2"
2020-11-28 22:22:24 +00:00
}