2024-03-04 09:24:57 +00:00
|
|
|
plugins {
|
2024-03-05 03:04:04 +00:00
|
|
|
application
|
2024-07-29 07:26:41 +00:00
|
|
|
alias(libs.plugins.kotlin.jvm)
|
2024-03-04 09:24:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
group = "dev.usbharu"
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-08-13 12:06:59 +00:00
|
|
|
implementation(libs.mongodb.kotlin.coroutine)
|
2024-05-03 17:16:01 +00:00
|
|
|
implementation(project(":owl-broker"))
|
|
|
|
implementation(project(":owl-common"))
|
2024-08-13 12:06:59 +00:00
|
|
|
implementation(platform(libs.koin.bom))
|
|
|
|
implementation(libs.koin.core)
|
2024-03-04 09:24:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
kotlin {
|
2024-07-29 06:37:28 +00:00
|
|
|
jvmToolchain(21)
|
2024-03-05 03:04:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
application {
|
|
|
|
mainClass = "dev.usbharu.owl.broker.MainKt"
|
2024-03-04 09:24:57 +00:00
|
|
|
}
|