Building with UTF-8 support.

This commit is contained in:
MobiusDev
2015-09-06 09:52:15 +00:00
parent f382ecd2bc
commit f2f0f2444b
2 changed files with 2 additions and 2 deletions

View File

@@ -67,7 +67,7 @@
</target>
<target name="compile" depends="init" description="Compile the source.">
<javac srcdir="${src}" classpathref="classpath" destdir="${build.bin}" compiler="modern" debug="true" debuglevel="lines,vars,source" includeantruntime="false" source="1.8" target="1.8" />
<javac srcdir="${src}" classpathref="classpath" destdir="${build.bin}" compiler="modern" debug="true" debuglevel="lines,vars,source" includeantruntime="false" source="1.8" target="1.8" encoding="UTF-8" />
</target>
<target name="jar" depends="compile" description="Create the jar files.">