This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
2023-12-03 01:24:30 +00:00
|
|
|
plugins {
|
|
|
|
kotlin("jvm") version "1.9.21"
|
|
|
|
}
|
|
|
|
|
|
|
|
group = "net.koval"
|
|
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
testImplementation(kotlin("test"))
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
2023-12-20 13:12:52 +00:00
|
|
|
jvmToolchain(11)
|
2023-12-03 01:24:30 +00:00
|
|
|
}
|