27 lines
319 B
Text
27 lines
319 B
Text
|
plugins {
|
||
|
kotlin("jvm") version "1.9.0"
|
||
|
application
|
||
|
}
|
||
|
|
||
|
group = "org.example"
|
||
|
version = "1.0-SNAPSHOT"
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
testImplementation(kotlin("test"))
|
||
|
}
|
||
|
|
||
|
tasks.test {
|
||
|
useJUnitPlatform()
|
||
|
}
|
||
|
|
||
|
kotlin {
|
||
|
jvmToolchain(8)
|
||
|
}
|
||
|
|
||
|
application {
|
||
|
mainClass.set("MainKt")
|
||
|
}
|