2024-03-04 09:24:57 +00:00
|
|
|
plugins {
|
2024-03-05 03:04:04 +00:00
|
|
|
application
|
2024-03-04 09:24:57 +00:00
|
|
|
kotlin("jvm")
|
|
|
|
}
|
|
|
|
|
|
|
|
group = "dev.usbharu"
|
|
|
|
version = "0.0.1"
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-07-10 00:27:32 +00:00
|
|
|
implementation("org.mongodb:mongodb-driver-kotlin-coroutine:5.1.2")
|
2024-05-03 17:16:01 +00:00
|
|
|
implementation(project(":owl-broker"))
|
|
|
|
implementation(project(":owl-common"))
|
2024-05-06 09:33:01 +00:00
|
|
|
implementation(platform("io.insert-koin:koin-bom:3.5.6"))
|
2024-03-04 09:24:57 +00:00
|
|
|
implementation(platform("io.insert-koin:koin-annotations-bom:1.3.1"))
|
|
|
|
implementation("io.insert-koin:koin-core")
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|