summaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/build.xml b/build.xml
index 5ddca93..04ebc21 100644
--- a/build.xml
+++ b/build.xml
@@ -14,13 +14,13 @@
*/
-->
-<project name="vecmath-1.4.0" default="jar-opt" basedir=".">
+<project name="vecmath-1.5.0" default="jar-opt" basedir=".">
<!-- Set global properties for this build -->
<property name="src" location="src"/>
<property name="build" location="build"/>
<property name="dist" location="dist"/>
- <property name="version" value="1_4_0"/>
+ <property name="version" value="1_5_0"/>
<property name="docname" value="vecmath-${version}-doc"/>
<target name="echo">
@@ -52,8 +52,8 @@
<!-- Compile the java code from ${src} into ${build}/debug/classes -->
<javac srcdir="${src}"
destdir="${build}/debug/classes"
- source="1.4"
- target="1.4"
+ source="1.5"
+ target="1.5"
debug="true"
deprecation="on"
/>
@@ -72,8 +72,8 @@
<!-- Compile the java code from ${src} into ${build}/opt/classes -->
<javac srcdir="${src}"
destdir="${build}/opt/classes"
- source="1.4"
- target="1.4"
+ source="1.5"
+ target="1.5"
debug="true"
debuglevel="lines,source"
deprecation="on"