I took three of the four eclipse plug-ins (I didn't move the nbeclipse.doc_2.6.0 folder) from the NBEclipse plug-in folders and put them in the Indigo dropins folder, which as I understand it, is the preferred approach when you can't use a software update site for a plug-in. Things worked pretty well. I decided to install one additional plug-in for support of Mercurial inside Eclipse. Just opening the Help->Install New Software dialog causes problems. If I let is sit for a minute or two I would get out of memory errors. If I kept going I eventually would get out of PermGen space errors and Eclipse would crash.
Removing the NNDK plug-ins allowed me to install the Mercurial plug-in from this dialog with no problem. Then I reinstalled the NNDK plug-ins. After some digging around I changed one setting in my eclipse.ini
Code: Select all
-XX:MaxPermSize=256M
became
-XX:MaxPermSize=512M
Code: Select all
-Dosgi.requiredJavaVersion=1.5
-XX:MaxPermSize=512M
-Xms256m
-Xmx512m
-Duser.name=Tod Gentille