Initial commit
This commit is contained in:
17
buildSrc/src/main/kotlin/elex-application.gradle.kts
Normal file
17
buildSrc/src/main/kotlin/elex-application.gradle.kts
Normal 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}"
|
||||
))
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user