diff options
author | Sven Gothel <[email protected]> | 2010-07-26 16:14:26 -0700 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-07-26 16:14:26 -0700 |
commit | 7e08f592b0868df1222c11627f4117bd488e5d6c (patch) | |
tree | f4f8397194c2cde4531adad157926098ca619cad /make/build.xml | |
parent | 8db35dabaef54b96eb90dde02cacebdeacd50126 (diff) |
Add jogl-demos.build.number - artifact.properties
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 55e972b..3511f58 100644 --- a/make/build.xml +++ b/make/build.xml @@ -21,6 +21,8 @@ </not> </condition> + <property file="../${rootrel.build}/artifact.properties"/> + <!-- - Make sure that jogl-demos.jar is not on the CLASSPATH; this can - cause builds to fail since if this Java process has the jar file @@ -259,7 +261,12 @@ </jar> </target> - <target name="all" depends="init, all-desktop, all-gles" /> + <target name="all" depends="init, all-desktop, all-gles, tag.build" /> + + <target name="tag.build"> + <copy file="${jogl.root}/${rootrel.build}/artifact.properties" todir="../${rootrel.build}" overwrite="true"/> + <echo file="../${rootrel.build}/artifact.properties" message='jogl-demos.build.number=${jogl-demos.build.number}${line.separator}' append="true"/> + </target> <target name="javadoc" depends="init"> <mkdir dir="${javadoc}" /> |