mirror of https://github.com/usbharu/Hideout.git
21 lines
259 B
Plaintext
21 lines
259 B
Plaintext
|
plugins {
|
||
|
kotlin("jvm") version "1.9.23"
|
||
|
}
|
||
|
|
||
|
group = "dev.usbharu"
|
||
|
version = "1.0-SNAPSHOT"
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
testImplementation(kotlin("test"))
|
||
|
}
|
||
|
|
||
|
tasks.test {
|
||
|
useJUnitPlatform()
|
||
|
}
|
||
|
kotlin {
|
||
|
jvmToolchain(21)
|
||
|
}
|