Somehow I can\'t get my UTF-8 sources to play nice with Ant.
I get a whole lot of \"warning: unmappable character for encoding ascii\". I\'m going crazy, really. Hou
Just specify encoding in your build.xml script:
build.xml
But for code re-use it's better to extract value into project-specific configuration file:
And then just add java.encoding=UTF-8 to build.properties to override encoding on per-project basis.
java.encoding=UTF-8