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-04-30 15:01:12 +00:00
|
|
|
implementation(platform("io.insert-koin:koin-bom:3.5.3"))
|
|
|
|
implementation("io.insert-koin:koin-core")
|
2024-05-06 07:55:57 +00:00
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0")
|
2024-04-30 15:01:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
kotlin {
|
|
|
|
jvmToolchain(17)
|
|
|
|
}
|