mirror of https://github.com/usbharu/Hideout.git
23 lines
319 B
Plaintext
23 lines
319 B
Plaintext
|
plugins {
|
||
|
kotlin("jvm")
|
||
|
}
|
||
|
|
||
|
group = "dev.usbharu"
|
||
|
version = "0.0.1"
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(project(":owl-common"))
|
||
|
testImplementation(kotlin("test"))
|
||
|
implementation(libs.bundles.jackson)
|
||
|
}
|
||
|
|
||
|
tasks.test {
|
||
|
useJUnitPlatform()
|
||
|
}
|
||
|
kotlin {
|
||
|
jvmToolchain(21)
|
||
|
}
|