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-11-30 23:46:20 +00:00
|
|
|
plugins {
|
|
|
|
kotlin("jvm") version "1.9.21"
|
2023-12-01 19:24:26 +00:00
|
|
|
id("org.jmailen.kotlinter") version "4.1.0"
|
2023-11-30 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
group = "net.koval"
|
|
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
testImplementation(kotlin("test"))
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
2023-12-01 19:24:26 +00:00
|
|
|
jvmToolchain(17)
|
2023-11-30 23:46:20 +00:00
|
|
|
}
|