You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by pa...@apache.org on 2017/08/10 03:55:27 UTC

svn commit: r1804627 - /commons/proper/jexl/trunk/pom.xml

Author: pascalschumacher
Date: Thu Aug 10 03:55:27 2017
New Revision: 1804627

URL: http://svn.apache.org/viewvc?rev=1804627&view=rev
Log:
try to fix build on travis by increasing max memory for tests

Modified:
    commons/proper/jexl/trunk/pom.xml

Modified: commons/proper/jexl/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/jexl/trunk/pom.xml?rev=1804627&r1=1804626&r2=1804627&view=diff
==============================================================================
--- commons/proper/jexl/trunk/pom.xml (original)
+++ commons/proper/jexl/trunk/pom.xml Thu Aug 10 03:55:27 2017
@@ -150,6 +150,8 @@
                     <includes>
                         <include>**/*Test.java</include>
                     </includes>
+                    <!-- to increase memory for test on travis ci -->
+                    <argLine>-Xmx64m</argLine>
                 </configuration>
             </plugin>
             <plugin>