You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by ma...@apache.org on 2015/02/02 19:21:31 UTC

svn commit: r1656532 - in /tika/trunk: CHANGES.txt tika-parent/pom.xml

Author: mattmann
Date: Mon Feb  2 18:21:30 2015
New Revision: 1656532

URL: http://svn.apache.org/r1656532
Log:
Fix for TIKA-1537 Installation on OSX 10.10.2 generates OutOfMemory Error during parser tests contributed by Andrew Hwang. This closes #26 

Modified:
    tika/trunk/CHANGES.txt
    tika/trunk/tika-parent/pom.xml

Modified: tika/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/tika/trunk/CHANGES.txt?rev=1656532&r1=1656531&r2=1656532&view=diff
==============================================================================
--- tika/trunk/CHANGES.txt (original)
+++ tika/trunk/CHANGES.txt Mon Feb  2 18:21:30 2015
@@ -1,5 +1,8 @@
 Release 1.8 - Current Development
-  * Build a parser to extract data from GRIB formats (TIKA-1423)
+
+  * Fix out of memory error in surefire plugin. (TIKA-1537)
+
+  * Build a parser to extract data from GRIB formats (TIKA-1423).
 
   * Upgrade to Commons Compress 1.9 (TIKA-1534).
 

Modified: tika/trunk/tika-parent/pom.xml
URL: http://svn.apache.org/viewvc/tika/trunk/tika-parent/pom.xml?rev=1656532&r1=1656531&r2=1656532&view=diff
==============================================================================
--- tika/trunk/tika-parent/pom.xml (original)
+++ tika/trunk/tika-parent/pom.xml Mon Feb  2 18:21:30 2015
@@ -322,6 +322,9 @@
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-surefire-plugin</artifactId>
           <version>2.12</version>
+          <configuration>
+            <argLine>-Xmx2048m</argLine>
+          </configuration>
         </plugin>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>