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"))
|
2024-03-27 22:50:06 +00:00
|
|
|
implementation(project(":storage"))
|
2022-06-03 02:28:44 +00:00
|
|
|
api(libs.ktor.server.core)
|
2022-06-04 04:46:02 +00:00
|
|
|
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()
|
|
|
|
}
|