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:33:51 -05:00
parent b8d9480ae7
commit 1f7ff56204

View File

@@ -33,7 +33,7 @@
<target name="compile" depends="copy-resources"> <target name="compile" depends="copy-resources">
<!-- Compile the java code from ${src} into ${build} --> <!-- 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>
<target name="compile-test" depends="compile"> <target name="compile-test" depends="compile">