You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemml.apache.org by de...@apache.org on 2016/11/04 18:19:10 UTC

incubator-systemml git commit: [SYSTEMML-1062] Add build time to manifest of main jar

Repository: incubator-systemml
Updated Branches:
  refs/heads/master 4b3938cdb -> 65231a5fb


[SYSTEMML-1062] Add build time to manifest of main jar

Add Build-Time manifestEntry to manifest for main jar artifact.

Closes #275.


Project: http://git-wip-us.apache.org/repos/asf/incubator-systemml/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-systemml/commit/65231a5f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-systemml/tree/65231a5f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-systemml/diff/65231a5f

Branch: refs/heads/master
Commit: 65231a5fb2078ad5671be95aa0d7c0efc9d9f77b
Parents: 4b3938c
Author: Deron Eriksson <de...@us.ibm.com>
Authored: Fri Nov 4 11:17:07 2016 -0700
Committer: Deron Eriksson <de...@us.ibm.com>
Committed: Fri Nov 4 11:17:07 2016 -0700

----------------------------------------------------------------------
 pom.xml | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/65231a5f/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 744f855..3d41b1e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -69,6 +69,7 @@
 		<scala.version>2.10.5</scala.version>
 		<scala.binary.version>2.10</scala.binary.version>
 		<scala.test.version>2.2.6</scala.test.version>
+		<maven.build.timestamp.format>yyyy-MM-dd HH:mm:ss z</maven.build.timestamp.format>
 		<!-- OS-specific JVM arguments for running integration tests -->
 		<integrationTestExtraJVMArgs />
 	</properties>
@@ -470,6 +471,9 @@
 								<manifest>
 									<mainClass>org.apache.sysml.api.DMLScript</mainClass>
 								</manifest>
+								<manifestEntries>
+									<Build-Time>${maven.build.timestamp}</Build-Time>
+								</manifestEntries>
 							</archive>
 						</configuration>
 					</execution>