Running ant jar on vanilla git repository fails to build. Yields several instances of:
error: unmappable character for encoding UTF8
[javac] Copyright � 1999 CERN - European Organization for Nuclear Research.
My system:
Apache Ant(TM) version 1.9.6 compiled on June 29 2015
javac 1.8.0_77
OSX El Capitan
Successful Patch:
diff --git a/build.xml b/build.xml
index f022a46..cf71924 100644
--- a/build.xml
+++ b/build.xml
@@ -32,7 +32,7 @@
<target name="compile" description="Compile code">
<mkdir dir="${bin}"/>
<mkdir dir="${lib}"/>
- <javac srcdir="${src}" destdir="${bin}" includeAntRuntime="no"
+ <javac encoding="iso-8859-1" srcdir="${src}" destdir="${bin}" includeAntRuntime="no"
classpathref="lib.path" debug="${compile.debug}">
</javac>
</target>
Running
ant jaron vanilla git repository fails to build. Yields several instances of:My system:
Apache Ant(TM) version 1.9.6 compiled on June 29 2015
javac 1.8.0_77
OSX El Capitan
Successful Patch: