diff options
author | Kevin Rushforth <[email protected]> | 2006-09-29 18:05:22 +0000 |
---|---|---|
committer | Kevin Rushforth <[email protected]> | 2006-09-29 18:05:22 +0000 |
commit | ef52440ac08db7764adadcc11c9437ab67b98714 (patch) | |
tree | 31b86db859a1d0e6ed42a25695711e49e624d460 /build.xml | |
parent | ffc8b12fb945850394498a1f9fe1f04e5f2042de (diff) |
Merged dev-1_5 branch back to MAIN trunk
git-svn-id: https://svn.java.net/svn/vecmath~svn/trunk@106 dd45e54d-f42e-c781-df72-dca083a658b1
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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" |