This commit is contained in:
2025-07-26 21:38:10 +08:00
parent 9b6627566d
commit b30611ead5
4 changed files with 82 additions and 1 deletions
+23
View File
@@ -0,0 +1,23 @@
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.lesson2.MainKt")