2024-04-30 15:01:12 +00:00
|
|
|
plugins {
|
2024-07-29 07:26:41 +00:00
|
|
|
alias(libs.plugins.kotlin.jvm)
|
2024-04-30 15:01:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
group = "dev.usbharu"
|
|
|
|
|
|
|
|
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-08-13 12:06:59 +00:00
|
|
|
implementation(platform(libs.koin.bom))
|
|
|
|
implementation(libs.koin.core)
|
|
|
|
implementation(libs.coroutines.core)
|
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
|
|
|
}
|