You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by do...@apache.org on 2008/08/23 01:06:08 UTC

svn commit: r688221 - /ofbiz/trunk/macros.xml

Author: doogie
Date: Fri Aug 22 16:06:08 2008
New Revision: 688221

URL: http://svn.apache.org/viewvc?rev=688221&view=rev
Log:
All .java files are encoded as UTF-8, so tell javac this.

Modified:
    ofbiz/trunk/macros.xml

Modified: ofbiz/trunk/macros.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/macros.xml?rev=688221&r1=688220&r2=688221&view=diff
==============================================================================
--- ofbiz/trunk/macros.xml (original)
+++ ofbiz/trunk/macros.xml Fri Aug 22 16:06:08 2008
@@ -37,11 +37,11 @@
  </presetdef>
 
  <presetdef name="javac14">
-  <default-javac compiler="javac1.4" target="1.4" source="1.4"/>
+  <default-javac compiler="javac1.4" target="1.4" source="1.4" encoding="UTF-8"/>
  </presetdef>
 
  <presetdef name="javac15">
-  <default-javac compiler="javac1.5" target="1.5" source="1.5">
+  <default-javac compiler="javac1.5" target="1.5" source="1.5" encoding="UTF-8">
    <!--
    <compilerarg value="-Xlint:unchecked"/>
    -->