Skip to content

Commit

Permalink
Fix javac target in build.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
iandees committed Jul 29, 2013
1 parent 402b4ba commit b2f293a
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 @@ -34,7 +34,7 @@
</target>
<target name="compile" depends="init">
<echo message="creating ${plugin.jar}"/>
<javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}">
<javac srcdir="src" classpath="${josm}" debug="true" target="${ant.build.javac.target}" destdir="${plugin.build.dir}">
<compilerarg value="-Xlint:deprecation"/>
<compilerarg value="-Xlint:unchecked"/>
</javac>
Expand Down

0 comments on commit b2f293a

Please sign in to comment.