Files
jfx-learn/lesson1/build.gradle.kts
T
2025-07-26 19:20:19 +08:00

25 lines
314 B
Kotlin

plugins {
kotlin("jvm")
}
group = "com.msksbr.jfxLearn"
version = "unspecified"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(17)
}
application {
mainClass.set("com.msksbr.jfxLearn.MainKt")
}