Files
spring-boot-examples/buildSrc/src/main/kotlin/elex-application.gradle.kts
2021-08-02 10:45:44 +09:00

18 lines
343 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,
"Automatic-Module-Name" to "com.elex_project.${project.name}"
))
}
}