Changeset 4243 in josm for trunk/build.xml
- Timestamp:
- 2011-07-14T18:05:50+02:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build.xml
r4239 r4243 21 21 </condition> 22 22 <!-- Java classpath addition (all jar files to compile tests with this) --> 23 < path id="classpath">23 <!-- <path id="classpath"> 24 24 <fileset dir="lib"> 25 25 <include name="**/*.jar"/> 26 26 </fileset> 27 </path> 27 </path> --> 28 28 <!-- 29 29 ** Used by Eclipse ant builder for updating … … 106 106 </target> 107 107 <target name="compile" depends="init"> 108 <javac srcdir="src" classpathref="classpath"includes="com/drew/**,oauth/**,org/apache/commons/codec/**" destdir="build" target="1.5" source="1.5" debug="on" encoding="iso-8859-1"/>109 <javac srcdir="src" classpathref="classpath"excludes="com/drew/**,oauth/**,org/apache/commons/codec/**" destdir="build" target="1.5" source="1.5" debug="on" encoding="UTF-8">108 <javac srcdir="src" includes="com/drew/**,oauth/**,org/apache/commons/codec/**" destdir="build" target="1.5" source="1.5" debug="on" encoding="iso-8859-1"/> 109 <javac srcdir="src" excludes="com/drew/**,oauth/**,org/apache/commons/codec/**" destdir="build" target="1.5" source="1.5" debug="on" encoding="UTF-8"> 110 110 <compilerarg value="-Xlint:deprecation"/> 111 111 <compilerarg value="-Xlint:unchecked"/>
Note:
See TracChangeset
for help on using the changeset viewer.