latin1 encoding option for javac: warnings on Linux otherwise

git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@4950 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
Xavier Le Vourch
2007-01-16 23:53:13 +00:00
parent 9fba2a117d
commit f5195c01a7

View File

@ -30,7 +30,7 @@
<target name="compile" description="Compiles the code">
<mkdir dir="${dir.build}" />
<javac source="1.4" target="1.4" deprecation="false" debug="true" optimize="false" srcdir="${dir.src}:${dir.regress}" destdir="${dir.build}">
<javac source="1.4" target="1.4" encoding="latin1" deprecation="false" debug="true" optimize="false" srcdir="${dir.src}:${dir.regress}" destdir="${dir.build}">
<classpath>
<path refid="dependencies.path" />
</classpath>