Skip to content

Commit

Permalink
Improve some lazy configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
SgtSilvio committed Aug 26, 2024
1 parent 94be70f commit b68d597
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ tasks.jar {
manifest.attributes(
"Built-JDK" to System.getProperty("java.version"),
"Implementation-Title" to "MQTT CLI",
"Implementation-Version" to project.version,
"Implementation-Version" to provider { project.version.toString() },
"Implementation-Vendor" to "HiveMQ GmbH",
"Specification-Title" to "MQTT CLI",
"Specification-Version" to project.version,
"Specification-Version" to provider { project.version.toString() },
"Specification-Vendor" to "HiveMQ GmbH",
"Main-Class" to application.mainClass.get(),
"Main-Class" to application.mainClass,
"Built-Date" to SimpleDateFormat("yyyy-MM-dd").format(Date()),
)
}
Expand Down

0 comments on commit b68d597

Please sign in to comment.