Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
java: Bump to Java 8
This fixes the following warnings:

    [javac] warning: [options] bootstrap class path not set in conjunction with -source 1.5
    [javac] warning: [options] source value 1.5 is obsolete and will be removed in a future release
    [javac] warning: [options] target value 1.5 is obsolete and will be removed in a future release

Java 8 was released in 2014 so it should be widely available now.

Signed-off-by: Kevin Cernekee <cernekee@gmail.com>
  • Loading branch information
cernekee committed Feb 12, 2018
1 parent 7a64d53 commit c040f2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/build.xml
Expand Up @@ -12,7 +12,7 @@

<target name="compile" depends="init">
<javac srcdir="${src}" destdir="${build}" encoding="utf-8"
source="1.5" target="1.5" includeantruntime="false"/>
source="1.8" target="1.8" includeantruntime="false"/>
</target>

<target name="dist" depends="compile">
Expand Down

0 comments on commit c040f2f

Please sign in to comment.