1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Description: Set the source encoding to fix the build failures with Java 9+
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: no
--- a/build/build.xml
+++ b/build/build.xml
@@ -54,6 +54,7 @@
<javac destdir="${outputDir}"
classpath=".:${loggerClasspath}"
srcdir="${sourceDir}"
+ encoding="ISO-8859-1"
debug="true"
deprecation="on">
<include name="jxl/*.java" />
@@ -83,6 +84,7 @@
<mkdir dir="${docsDir}" />
<javadoc sourcepath="${sourceDir}"
destdir="${docsDir}"
+ encoding="ISO-8859-1"
public="true"
nodeprecated="false">
<package name="jxl" />
|