diff options
author | Sven Gothel <[email protected]> | 2010-11-10 06:30:27 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-11-10 06:30:27 +0100 |
commit | 4ea473a2cbf59fcbd8e82d26da389cd8c2b4a291 (patch) | |
tree | 3284f63bcc2ca7a2d826e1d72c6122adf5678f6f /make/build.xml | |
parent | 0e518c96ae9523eb90989ec6d59c0fbcc8d71349 (diff) |
Added 'jogl.build.id' (hudson timestamp), 'jogl.build.commit' (git commit sha1) and 'jogl.build.branch' (git branch) to the JARs Manifest files, artifact.properties and deployment README.txt ; Fixed some URLs and text ; Removed the notion of RI and non RI versions, since from now on we reference a release version via: module-base-version, git sha1 and hudson build number
Diffstat (limited to 'make/build.xml')
-rw-r--r-- | make/build.xml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/make/build.xml b/make/build.xml index 54ac04432..ed629181d 100644 --- a/make/build.xml +++ b/make/build.xml @@ -101,6 +101,9 @@ overwrite="true"> <filterset> <filter token="VERSION" value="${jogl.version}"/> + <filter token="SCM_BRANCH" value="${jogl.build.branch}"/> + <filter token="SCM_COMMIT" value="${jogl.build.commit}"/> + <filter token="BASEVERSION" value="${jogl_base_version}"/> </filterset> </copy> <mkdir dir="${archive}/jar" /> @@ -129,9 +132,13 @@ <target name="tag.build" depends="init"> <copy file="${build.gluegen}/artifact.properties" todir="${build}" overwrite="true"/> - <echo file="${build}/artifact.properties" message='jogl.build.number=${jogl.build.number}${line.separator}' append="true"/> + <echo message='jogl.build.number=${jogl.build.number}${line.separator}' file="${build}/artifact.properties" append="true"/> + <echo message='jogl.build.id=${jogl.build.id}${line.separator}' file="${build}/artifact.properties" append="true"/> + <echo message='jogl.build.branch=${jogl.build.branch}${line.separator}' file="${build}/artifact.properties" append="true"/> + <echo message='jogl.build.commit=${jogl.build.commit}${line.separator}' file="${build}/artifact.properties" append="true"/> </target> + <!-- ================================================================== --> <!-- - Main build target. |