mirror of https://github.com/usbharu/Hideout.git
26 lines
523 B
Plaintext
26 lines
523 B
Plaintext
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
group = "dev.usbharu"
|
|
version = "0.0.1"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test"))
|
|
implementation(project(":owl-producer:owl-producer-api"))
|
|
implementation(project(":owl-broker"))
|
|
implementation(platform("io.insert-koin:koin-bom:3.5.6"))
|
|
implementation("io.insert-koin:koin-core")
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
} |