This commit is contained in:
2025-07-26 23:14:57 +08:00
parent eb331f3d22
commit 9f4c20c83e
6 changed files with 133 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.lesson3.MainKt")