mirror of https://github.com/usbharu/Hideout.git
29 lines
491 B
Plaintext
29 lines
491 B
Plaintext
plugins {
|
|
application
|
|
alias(libs.plugins.kotlin.jvm)
|
|
}
|
|
|
|
group = "dev.usbharu"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.mongodb.kotlin.coroutine)
|
|
implementation(project(":owl-broker"))
|
|
implementation(project(":owl-common"))
|
|
implementation(platform(libs.koin.bom))
|
|
implementation(libs.koin.core)
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
kotlin {
|
|
jvmToolchain(21)
|
|
}
|
|
|
|
application {
|
|
mainClass = "dev.usbharu.owl.broker.MainKt"
|
|
} |