Files
javafx-examples/buildSrc/src/main/kotlin/elex-application.gradle.kts
2024-04-01 20:11:09 +09:00

18 lines
278 B
Kotlin

plugins {
id("elex-base")
application
}
tasks.jar {
manifest {
attributes(mapOf(
"Implementation-Title" to project.name,
"Implementation-Version" to project.version,
"Implementation-Vendor" to "ELEX co.,pte.",
"Main-Class" to application.mainClass
))
}
}