JavaC target set to 1.4 for proper compilation of 1.5 code.
authorjprocter <Jim Procter>
Thu, 31 Mar 2005 09:56:11 +0000 (09:56 +0000)
committerjprocter <Jim Procter>
Thu, 31 Mar 2005 09:56:11 +0000 (09:56 +0000)
build.xml

index 76e2d1d..2082fbd 100755 (executable)
--- a/build.xml
+++ b/build.xml
@@ -75,7 +75,7 @@
 
   <target name="build" depends="prepare">
             <!-- not efficient yet. -->
-     <javac srcdir="${sourceDir}" destdir="${outputDir}"
+     <javac source="1.4" target="1.4" srcdir="${sourceDir}" destdir="${outputDir}"
         classpathref="build.classpath" />
   </target>
   <target name="buildindices" depends="init, prepare"