summaryrefslogtreecommitdiffstats
path: root/make/build.xml
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-11-29 04:21:36 +0100
committerSven Gothel <[email protected]>2010-11-29 04:21:36 +0100
commitecd31f6cb47c9df78f87d8ef36049a2afc766ab2 (patch)
tree5cfc1590fd96374b9be588bbf468c6743512aad4 /make/build.xml
parent2b6d3f6d29db56ffff41a8a675f81cee91ebecba (diff)
Add build id, branch and commit to artifacts properties
Diffstat (limited to 'make/build.xml')
-rw-r--r--make/build.xml8
1 files changed, 7 insertions, 1 deletions
diff --git a/make/build.xml b/make/build.xml
index 1d6a610..7ee1199 100644
--- a/make/build.xml
+++ b/make/build.xml
@@ -32,6 +32,9 @@
<property file="${build}/artifact.properties"/>
<property name="jogl-demos.build.number" value="manual-build"/>
+ <property name="jogl-demos.build.id" value="${version.timestamp}"/>
+ <property name="jogl-demos.build.branch" value="master"/>
+ <property name="jogl-demos.build.commit" value="manual"/>
<!--
- Make sure that jogl-demos.jar is not on the CLASSPATH; this can
@@ -266,7 +269,10 @@
<target name="tag.build">
<copy file="${jogl.root}/${rootrel.build}/artifact.properties" todir="${build}" overwrite="true"/>
- <echo file="${build}/artifact.properties" message='jogl-demos.build.number=${jogl-demos.build.number}${line.separator}' append="true"/>
+ <echo message='jogl-demos.build.number=${jogl-demos.build.number}${line.separator}' file="${build}/artifact.properties" append="true"/>
+ <echo message='jogl-demos.build.id=${jogl-demos.build.id}${line.separator}' file="${build}/artifact.properties" append="true"/>
+ <echo message='jogl-demos.build.branch=${jogl-demos.build.branch}${line.separator}' file="${build}/artifact.properties" append="true"/>
+ <echo message='jogl-demos.build.commit=${jogl-demos.build.commit}${line.separator}' file="${build}/artifact.properties" append="true"/>
</target>
<target name="javadoc" depends="init">