twigs/api/build.gradle.kts

18 lines
384 B
Text
Raw Normal View History

2021-07-29 16:40:22 +00:00
plugins {
kotlin("jvm")
`java-library`
}
dependencies {
implementation(kotlin("stdlib"))
api(project(":core"))
2023-09-25 02:07:31 +00:00
implementation(project(":service"))
implementation(project(":storage"))
2022-06-03 02:28:44 +00:00
api(libs.ktor.server.core)
api(libs.kotlinx.coroutines.core)
2023-09-27 02:04:55 +00:00
testImplementation(project(":testhelpers"))
2021-07-29 16:40:22 +00:00
}
tasks.getByName<Test>("test") {
useJUnitPlatform()
}