Improving JAR manifest file
authorGustavo Martin Morcuende <gu.martinm@gmail.com>
Sun, 22 Jan 2017 17:29:26 +0000 (18:29 +0100)
committerGustavo Martin Morcuende <gu.martinm@gmail.com>
Sun, 22 Jan 2017 17:29:26 +0000 (18:29 +0100)
SpringJava/Gradle/build.gradle

index 3fbb125..8493ff3 100644 (file)
@@ -101,7 +101,12 @@ subprojects {
 
     jar {
         manifest {
-            attributes 'Implementation-Title': 'Spring JPA Persistence, gradle example', 'Implementation-Version': version
+            attributes('Implementation-Title': 'Spring JPA Persistence, gradle example',
+                'Implementation-Version': version,
+                'Build-Time': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"),
+                'Built-By': System.getProperty('user.name'),
+                'Built-JDK': System.getProperty('java.version')
+            )
         }
     }