twigs/testhelpers/build.gradle.kts

13 lines
300 B
Text
Raw Normal View History

2021-08-26 13:15:14 +00:00
plugins {
kotlin("jvm")
java
}
dependencies {
implementation(kotlin("stdlib"))
implementation(project(":storage"))
2021-12-18 14:18:52 +00:00
api("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.2")
api("org.junit.jupiter:junit-jupiter-api:5.8.2")
2021-08-26 13:15:14 +00:00
api("org.junit.jupiter:junit-jupiter-engine")
}