[jboss-svn-commits] JBL Code SVN: r36397 - labs/jbossrules/trunk.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Mon Dec 13 09:44:32 EST 2010
Author: ge0ffrey
Date: 2010-12-13 09:44:31 -0500 (Mon, 13 Dec 2010)
New Revision: 36397
Modified:
labs/jbossrules/trunk/README.txt
Log:
JBRULES-2829 avoid StackOverflowError when building
Modified: labs/jbossrules/trunk/README.txt
===================================================================
--- labs/jbossrules/trunk/README.txt 2010-12-13 13:55:45 UTC (rev 36396)
+++ labs/jbossrules/trunk/README.txt 2010-12-13 14:44:31 UTC (rev 36397)
@@ -80,6 +80,16 @@
Configuring Eclipse
===================
+Open ECLIPSE_HOME/eclipse.ini and set this:
+-vmargs
+-Xms512m
+-Xmx512m
+-Xss1024k
+-XX:PermSize=512m
+-XX:MaxPermSize=512m
+
+Note that the -Xss1024k is very important or you 'll get a StackOverflowError when building.
+
There are 2 ways to configure Eclipse based on Maven's poms.
The maven-eclipse-plugin way
@@ -186,6 +196,13 @@
- Select the profiles "notSoaProfile" and "fullProfile".
- Go grab a coffee while it's indexing.
+Verify other settings:
+- Open menu File, menu item settings:
+- Tree item Compiler, change the contents of the textfield resource patterns to "!?*.java" (without the double quotes)
+- Tree item compiler, tree item Java Compiler, textfield additional command line parameters
+-- add " -J-Xss1024k" so it becomes something like "-target 1.5 -J-Xss1024k"
+-- This is to avoid an StackOverflowError when building
+
Code style
----------
More information about the jboss-svn-commits
mailing list