Skip to content

Commit

Permalink
Merge pull request #808 from matthiasblaesing/elf_analyser_fix_version
Browse files Browse the repository at this point in the history
The ant-elfanalyser helper ant task should be compiled with source/target version
  • Loading branch information
matthiasblaesing authored May 17, 2017
2 parents 4450862 + eb00d39 commit 3a5787b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,12 @@
<property name="reports" value="${build}/reports"/>

<mkdir dir="${build}/ant-elfanalyser" />
<javac classpath="lib/ant.jar" destdir="${build}/ant-elfanalyser" includeantruntime="false">
<javac classpath="lib/ant.jar"
destdir="${build}/ant-elfanalyser"
includeantruntime="false"
source="1.6"
target="1.6"
>
<src path="src" />
<src path="ant-elfanalyser-src" />
<include name="**/ELFAnalyser.java" />
Expand Down

0 comments on commit 3a5787b

Please sign in to comment.