mirror of https://github.com/usbharu/Hideout.git
25 lines
459 B
Plaintext
25 lines
459 B
Plaintext
plugins {
|
|
alias(libs.plugins.kotlin.jvm)
|
|
}
|
|
|
|
group = "dev.usbharu"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test"))
|
|
implementation(project(":owl-producer:owl-producer-api"))
|
|
implementation(project(":owl-broker"))
|
|
implementation(platform(libs.koin.bom))
|
|
implementation(libs.koin.core)
|
|
implementation(libs.coroutines.core)
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
kotlin {
|
|
jvmToolchain(21)
|
|
} |