mirror of https://github.com/jlizier/jidt
Added encoding="UTF8" to the javac call, after getting a report of a user with javac problems (seemingly with platform default encoding not matching UTF8)
This commit is contained in:
parent
643212840a
commit
de5661b1e3
|
|
@ -52,7 +52,7 @@
|
|||
ignore the warning, and I don't want to bother installing Java 7 just to compile
|
||||
like this. I'll endeavour not to use JDK 8 libraries so as not to cause
|
||||
any issues here ... -->
|
||||
<javac srcdir="${src}" destdir="${bin}" includeAntRuntime="false" target="1.6" source="1.6">
|
||||
<javac srcdir="${src}" destdir="${bin}" includeAntRuntime="false" target="1.6" source="1.6" encoding="UTF8">
|
||||
<classpath refid="apache-classpath"/>
|
||||
</javac>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue