Skip to content

Commit

Permalink
Use java 8 compiler
Browse files Browse the repository at this point in the history
Update Ant smoke test to explicitly use Java 8.
  • Loading branch information
philwebb committed Jun 11, 2020
1 parent 0165fee commit 29f5468
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -29,7 +29,7 @@
</target>

<target name="compile" depends="init" description="compile">
<javac srcdir="src/main/java" destdir="build/ant/classes" classpathref="compile.classpath" fork="true" includeantruntime="false" />
<javac srcdir="src/main/java" destdir="build/ant/classes" classpathref="compile.classpath" fork="true" includeantruntime="false" source="8" target="8" compiler="javac1.8"/>
</target>

<target name="clean" description="cleans all created files/dirs">
Expand Down

0 comments on commit 29f5468

Please sign in to comment.