This commit is contained in:
2025-07-26 19:20:19 +08:00
commit 76b4c65369
14 changed files with 539 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
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")
}