Heya,

So in this issue:

https://issues.apache.org/jira/browse/ZOOKEEPER-2197

we ran into a problem with utf-8 chars. How what about we teach javac to
treat
all files as utf-8? Would that be a problem for anyone/any platform?
Something like
this in build.xml:

<target name="compile" depends="ivy-retrieve,clover,build-generated">
        <javac srcdir="${java.src.dir}" destdir="${build.classes}"
includeantruntime="false"
               target="${javac.target}" source="${javac.source}" debug="on"
encoding="UTF-8">
            <classpath refid="java.classpath"/>
            <compilerarg value="-Xlint:all"/>
            <compilerarg value="-Xlint:-path"/>
        </javac>
</target>

Thoughts?


-rgs

Reply via email to