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:
jlizier 2018-05-31 10:33:31 +10:00
parent 643212840a
commit de5661b1e3
1 changed files with 1 additions and 1 deletions

View File

@ -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>