Skip to content
This repository has been archived by the owner on May 4, 2021. It is now read-only.

Commit

Permalink
Problem: Manifest entries are not ordered properly
Browse files Browse the repository at this point in the history
Solution: Reorder
  • Loading branch information
msteinhoff committed Jan 6, 2017
1 parent a292ae7 commit 750b9e8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,14 @@ tasks.withType(JavaCompile) {
tasks.withType(Jar) {
manifest {
attributes(
'Built-By': System.properties['user.name'],
'Created-By': "${System.properties['java.version']} (${System.properties['java.vendor']} ${System.properties['java.vm.version']})".toString(),
'Build-Date': buildDateOnly,
'Build-Time': buildTimeOnly,
'Implementation-Title': project.name,
'Implementation-Version': project.version,
'Implementation-Vendor': "Mario Steinhoff",
"Implementation-Vendor-Id": "${project.group}",
"Implementation-Vendor-Id": project.group,
'Created-By': "${System.properties['java.version']} (${System.properties['java.vendor']} ${System.properties['java.vm.version']})".toString(),
'Built-By': System.properties['user.name'],
'Build-Date': buildDateOnly,
'Build-Time': buildTimeOnly,
"Git-Commit-Id": gitRevision
)
}
Expand Down

0 comments on commit 750b9e8

Please sign in to comment.