diff options
author | kcr <kcr@28c7f869-5b4e-e670-f602-82bfaf57f300> | 2004-10-06 17:20:19 +0000 |
---|---|---|
committer | kcr <kcr@28c7f869-5b4e-e670-f602-82bfaf57f300> | 2004-10-06 17:20:19 +0000 |
commit | b050676ee23e3cff594f2aff6e1ab42c9f8d8de2 (patch) | |
tree | a554532c72b969c7b517a7b47e2b3d5f2c25959f /src/LOD | |
parent | 43e98e7988decbbeade957e4fdcc97e365667609 (diff) |
Force target=1.4 so that examples built with JDK 1.5 will run on JDK 1.4
Diffstat (limited to 'src/LOD')
-rw-r--r-- | src/LOD/build.xml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/LOD/build.xml b/src/LOD/build.xml index cbf53a8..def3da4 100644 --- a/src/LOD/build.xml +++ b/src/LOD/build.xml @@ -48,7 +48,10 @@ <project basedir="." default="compile"> <target name="compile"> - <javac debug="true" deprecation="true" destdir="." srcdir="."> + <javac + destdir="." srcdir="." + source="1.4" target="1.4" + debug="true" deprecation="true"> </javac> </target> |