Initial commit

This commit is contained in:
Elex
2021-08-22 16:55:56 +09:00
commit eedf066993
16 changed files with 536 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
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,
"Automatic-Module-Name" to "com.elex_project.${project.name}"
))
}
}