Updated build for Java 8. Version 6 is no longer supported as of Java SE JDK 25.

This commit is contained in:
2026-02-10 11:20:12 -05:00
parent a2a6df8aa6
commit 0bb5d3fa65

View File

@@ -35,7 +35,7 @@
<target name="compile" depends="copy-resources">
<!-- Compile the java code from ${src} into ${build} -->
<javac srcdir="${src}" destdir="${build}" classpathref="build.classpath" debug="true" source="1.6" target="1.6"/>
<javac srcdir="${src}" destdir="${build}" classpathref="build.classpath" debug="true" source="1.8" target="1.8"/>
</target>
<target name="compile-test" depends="compile">