Skip to content

Commit

Permalink
Added javac "includeantruntime" attribute in build.xml (avoid compila…
Browse files Browse the repository at this point in the history
…tion warnings)
  • Loading branch information
drmalex07 committed Jan 8, 2014
1 parent 15d4a53 commit 47e6947
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

<target name="compile">
<mkdir dir="${build_dir}/classes"/>
<javac srcdir="${src_dir}" destdir="${build_dir}/classes" classpathref="cp1" >
<javac includeantruntime="false" srcdir="${src_dir}" destdir="${build_dir}/classes" classpathref="cp1" >
<compilerarg value="-Xlint:unchecked"/>
<compilerarg value="-Xlint:deprecation"/>
</javac>
Expand Down

0 comments on commit 47e6947

Please sign in to comment.