You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by ke...@apache.org on 2007/01/03 02:36:32 UTC

svn commit: r492002 - in /incubator/openejb/trunk/openejb2: modules/openejb-builder/pom.xml pom.xml

Author: kevan
Date: Tue Jan  2 17:36:31 2007
New Revision: 492002

URL: http://svn.apache.org/viewvc?view=rev&rev=492002
Log:
Fix build errors in openejb 2.3-SNAPSHOT. The latest xmlbeans-maven-plugin (20061223-9) doesn't work (I've filed a maven jira). An earlier version (20060627.031204-7) does work. So, use that for now... Also, surefire tests run out of PERMGEN space (it's right at the 64meg default). I'ved increased to 80megs.

Modified:
    incubator/openejb/trunk/openejb2/modules/openejb-builder/pom.xml
    incubator/openejb/trunk/openejb2/pom.xml

Modified: incubator/openejb/trunk/openejb2/modules/openejb-builder/pom.xml
URL: http://svn.apache.org/viewvc/incubator/openejb/trunk/openejb2/modules/openejb-builder/pom.xml?view=diff&rev=492002&r1=492001&r2=492002
==============================================================================
--- incubator/openejb/trunk/openejb2/modules/openejb-builder/pom.xml (original)
+++ incubator/openejb/trunk/openejb2/modules/openejb-builder/pom.xml Tue Jan  2 17:36:31 2007
@@ -189,6 +189,14 @@
                 </executions>
             </plugin>
 
+           <plugin>
+              <groupId>org.apache.maven.plugins</groupId>
+              <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <argLine>-XX:MaxPermSize=80m</argLine>
+                </configuration>
+	    </plugin>
+
         </plugins>
 
     </build>

Modified: incubator/openejb/trunk/openejb2/pom.xml
URL: http://svn.apache.org/viewvc/incubator/openejb/trunk/openejb2/pom.xml?view=diff&rev=492002&r1=492001&r2=492002
==============================================================================
--- incubator/openejb/trunk/openejb2/pom.xml (original)
+++ incubator/openejb/trunk/openejb2/pom.xml Tue Jan  2 17:36:31 2007
@@ -753,7 +753,11 @@
                 <plugin>
                     <groupId>org.codehaus.mojo</groupId>
                     <artifactId>xmlbeans-maven-plugin</artifactId>
-                    <version>2.0.1-SNAPSHOT</version>
+                    <!-- 
+                      The current snapshot (20061223) doesn't work. Use an older one, until it's fixed
+                      -->
+                    <version>2.0.1-20060627.031204-7</version>
+                    <!--version>2.0.1-SNAPSHOT</version -->
                 </plugin>
             </plugins>
         </pluginManagement>