Skip to content

Commit

Permalink
Target Java 8
Browse files Browse the repository at this point in the history
  • Loading branch information
genomescale committed Jun 23, 2021
1 parent df82bb1 commit 94484a3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@

<target name="compile">
<mkdir dir="${classes.dir}"/>
<javac srcdir="${src.dir}" destdir="${classes.dir}" classpathref="classpath" includeantruntime="false" debug="true">
<!-- add the argument bootclasspath="/path/to/java8/jre/lib/rt.jar" setting the path as appropriate for your system -->
<javac srcdir="${src.dir}" destdir="${classes.dir}" classpathref="classpath" includeantruntime="false" source="1.8" target="1.8" debug="true">
<patternset refid="excluded.source.files"/>
</javac>
</target>
Expand Down

0 comments on commit 94484a3

Please sign in to comment.