You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by pr...@apache.org on 2009/02/27 13:40:12 UTC

svn commit: r748496 - /webservices/axis2/trunk/java/modules/adb-codegen/pom.xml

Author: pradine
Date: Fri Feb 27 12:40:11 2009
New Revision: 748496

URL: http://svn.apache.org/viewvc?rev=748496&view=rev
Log:
Modify pom to eleminate OOM error that occurs during compile of the tests

Modified:
    webservices/axis2/trunk/java/modules/adb-codegen/pom.xml

Modified: webservices/axis2/trunk/java/modules/adb-codegen/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/adb-codegen/pom.xml?rev=748496&r1=748495&r2=748496&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/adb-codegen/pom.xml (original)
+++ webservices/axis2/trunk/java/modules/adb-codegen/pom.xml Fri Feb 27 12:40:11 2009
@@ -87,6 +87,15 @@
                     </includes>
                 </configuration>
             </plugin>
+	        <plugin>
+	          <groupId>org.apache.maven.plugins</groupId>
+	          <artifactId>maven-compiler-plugin</artifactId>
+	          <configuration>
+	            <fork>true</fork>
+	            <meminitial>128m</meminitial>
+	            <maxmem>256m</maxmem>
+	          </configuration>
+	        </plugin>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-antrun-plugin</artifactId>