You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by ro...@apache.org on 2013/11/17 18:31:50 UTC

git commit: THRIFT-2261 java: error: unmappable character for encoding ASCII Patch: Roger Meier

Updated Branches:
  refs/heads/master 5f2d34e5a -> f35975b67


THRIFT-2261 java: error: unmappable character for encoding ASCII
Patch: Roger Meier


Project: http://git-wip-us.apache.org/repos/asf/thrift/repo
Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/f35975b6
Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/f35975b6
Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/f35975b6

Branch: refs/heads/master
Commit: f35975b67fc57fbb7c3b1bb43c09b646558be454
Parents: 5f2d34e
Author: Roger Meier <ro...@apache.org>
Authored: Sun Nov 17 18:30:23 2013 +0100
Committer: Roger Meier <ro...@apache.org>
Committed: Sun Nov 17 18:30:23 2013 +0100

----------------------------------------------------------------------
 lib/java/build.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/f35975b6/lib/java/build.xml
----------------------------------------------------------------------
diff --git a/lib/java/build.xml b/lib/java/build.xml
index fa00ee7..5545b8c 100755
--- a/lib/java/build.xml
+++ b/lib/java/build.xml
@@ -92,7 +92,7 @@
 
   <target name="compile" depends="init">
     <javac srcdir="${src}" destdir="${build.dir}" source="1.5" target="1.5" 
-    debug="true" classpathref="compile.classpath" includeantruntime="false">
+    debug="true" classpathref="compile.classpath" includeantruntime="false" encoding="UTF-8">
       <compilerarg value="-Xlint:unchecked"/>
     </javac>
   </target>
@@ -158,15 +158,15 @@
   </target>
 
   <target name="compile-test" description="Build the test suite classes" depends="optional-generate,dist">
-    <javac debug="true" srcdir="${gen}" destdir="${build.test.dir}" classpathref="test.classpath" includeantruntime="false">
+    <javac debug="true" srcdir="${gen}" destdir="${build.test.dir}" classpathref="test.classpath" includeantruntime="false" encoding="UTF-8">
       <compilerarg value="-Xlint:deprecation"/>
       <!--<compilerarg value="-Xlint:unchecked"/>-->
     </javac>  
-    <javac debug="true" srcdir="${genbean}" destdir="${build.test.dir}" classpathref="test.classpath" includeantruntime="false">
+    <javac debug="true" srcdir="${genbean}" destdir="${build.test.dir}" classpathref="test.classpath" includeantruntime="false" encoding="UTF-8">
       <compilerarg value="-Xlint:deprecation"/>
       <!--<compilerarg value="-Xlint:unchecked"/>-->
     </javac>  
-    <javac debug="true" srcdir="${src.test}" destdir="${build.test.dir}" classpathref="test.classpath" includeantruntime="false">
+    <javac debug="true" srcdir="${src.test}" destdir="${build.test.dir}" classpathref="test.classpath" includeantruntime="false" encoding="UTF-8">
       <compilerarg value="-Xlint:deprecation"/>
       <!--<compilerarg value="-Xlint:unchecked"/>-->
     </javac>