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.
|
plugins {
|
|
kotlin("jvm") version "1.9.21"
|
|
}
|
|
|
|
group = "net.koval"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test"))
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(8)
|
|
} |