Hideout/owl/owl-broker/owl-broker-mongodb/build.gradle.kts

31 lines
618 B
Plaintext
Raw Normal View History

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 {
implementation("org.mongodb:mongodb-driver-kotlin-coroutine:5.1.2")
implementation(project(":owl-broker"))
implementation(project(":owl-common"))
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 {
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
}