You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by rm...@apache.org on 2014/10/13 14:34:52 UTC

svn commit: r1631362 - /tomee/tomee/trunk/container/openejb-core/pom.xml

Author: rmannibucau
Date: Mon Oct 13 12:34:52 2014
New Revision: 1631362

URL: http://svn.apache.org/r1631362
Log:
Fixes TOMEE-1406 patch from Daniel Kasmeroglu, exclude Messages_hi_input.txt to let openejb-core compile even when encoding is not right by default in the envrt

Modified:
    tomee/tomee/trunk/container/openejb-core/pom.xml

Modified: tomee/tomee/trunk/container/openejb-core/pom.xml
URL: http://svn.apache.org/viewvc/tomee/tomee/trunk/container/openejb-core/pom.xml?rev=1631362&r1=1631361&r2=1631362&view=diff
==============================================================================
--- tomee/tomee/trunk/container/openejb-core/pom.xml (original)
+++ tomee/tomee/trunk/container/openejb-core/pom.xml Mon Oct 13 12:34:52 2014
@@ -230,6 +230,15 @@
       <resource>
         <directory>src/main/resources</directory>
         <filtering>true</filtering>
+        <excludes>
+          <!--
+          This file is encoded in UTF-16LE so it causes trouble
+          as the default encoding is UTF-8. However as it's 
+          obviously only used as an input file for the corresponding
+          properties we're just ignoring it here. 
+          -->
+          <exclude>**/Messages_hi_input.txt</exclude>
+        </excludes>
       </resource>
     </resources>
     <testResources>