testoperenv/java/GradleTest/build.gradle.kts

27 lines
319 B
Text
Raw Normal View History

2023-11-28 00:56:37 +01:00
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")
}