2021-08-16 03:10:39 +00:00
|
|
|
plugins {
|
|
|
|
`java-library`
|
2022-06-03 02:28:44 +00:00
|
|
|
alias(libs.plugins.kotlin.jvm)
|
2021-08-16 03:10:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(kotlin("stdlib"))
|
2024-03-30 04:18:22 +00:00
|
|
|
implementation(project(":core"))
|
|
|
|
implementation(project(":service"))
|
2022-06-03 02:28:44 +00:00
|
|
|
api(libs.ktor.server.core)
|
2024-03-30 04:18:22 +00:00
|
|
|
api(libs.ktor.server.mustache)
|
2022-06-03 02:28:44 +00:00
|
|
|
testImplementation(libs.junit.jupiter.api)
|
|
|
|
testRuntimeOnly(libs.junit.jupiter.engine)
|
2021-08-16 03:10:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.getByName<Test>("test") {
|
|
|
|
useJUnitPlatform()
|
2024-03-30 04:18:22 +00:00
|
|
|
}
|