2024-04-30 15:01:12 +00:00
|
|
|
plugins {
|
|
|
|
kotlin("jvm")
|
|
|
|
}
|
|
|
|
|
|
|
|
group = "dev.usbharu"
|
|
|
|
version = "0.0.1"
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
testImplementation(kotlin("test"))
|
2024-05-03 17:16:01 +00:00
|
|
|
implementation(project(":owl-producer:owl-producer-api"))
|
|
|
|
implementation(project(":owl-broker"))
|
2024-05-11 17:18:41 +00:00
|
|
|
implementation(platform("io.insert-koin:koin-bom:3.5.6"))
|
2024-04-30 15:01:12 +00:00
|
|
|
implementation("io.insert-koin:koin-core")
|
2024-05-11 17:26:21 +00:00
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1")
|
2024-04-30 15:01:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
kotlin {
|
2024-07-29 06:37:28 +00:00
|
|
|
jvmToolchain(21)
|
2024-04-30 15:01:12 +00:00
|
|
|
}
|