diff options
author | Sven Gothel <[email protected]> | 2010-11-09 04:11:34 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-11-09 04:11:34 +0100 |
commit | 63f46a00178e0504a04d98972ed120ff5fa3ce3f (patch) | |
tree | c8a294eb3c1c0c35d65e103ed7ecc1ea756c1b7e | |
parent | 1b24055fd9178e865ac91b67682ff36d89ae9028 (diff) |
Archive: add timestamp; javadoc with 1.5
-rwxr-xr-x | make/build.xml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/make/build.xml b/make/build.xml index 804ac8a..b6c4ca4 100755 --- a/make/build.xml +++ b/make/build.xml @@ -21,6 +21,10 @@ <!-- This is the version of GlueGen you are building --> <property name="gluegen_base_version" value="2.0"/> + <tstamp> + <format property="version.timestamp" pattern="yyyyMMddHHmm"/> + </tstamp> + <property name="gluegen.version" value="${gluegen_base_version}-${version.timestamp}" /> <import file="gluegen-cpptasks.xml" /> @@ -90,7 +94,7 @@ <property name="tools.jar" value="${java.home}/../lib/tools.jar"/> - <property name="archive.name" value="gluegen-${gluegen_base_version}-${os.and.arch}" /> + <property name="archive.name" value="gluegen-${gluegen.version}-${os.and.arch}" /> <property name="archive" value="${build}/${archive.name}" /> </target> @@ -727,7 +731,7 @@ <javadoc packagenames="com.jogamp.*" sourcepath="${src.java};${src.generated.java}" destdir="${javadoc}" windowtitle="GlueGen Runtime Documentation" - source="1.4" + source="1.5" maxmemory="256m" > <classpath path="${classes}"/> <link offline="true" href="${javadoc.link}" packagelistLoc="142-packages" /> |