THRIFT-482. java: build.xml does not specify a target version for compiled java classes

This patch updates the build file to target java 1.5.



git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@772373 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Bryan Duxbury 2009-05-06 17:22:11 +00:00
parent b7b8af9e61
commit 787538943b

View File

@ -107,7 +107,7 @@
</target>
<target name="compile" depends="init,resolve">
<javac srcdir="${src}" destdir="${build}" source="1.5" debug="true" classpathref="compile.classpath" />
<javac srcdir="${src}" destdir="${build}" source="1.5" target="1.5" debug="true" classpathref="compile.classpath" />
</target>
<target name="javadoc" depends="init">