Posts Tagged error
Mac Flash Builder Plugin Install Error 6 + FIX
Posted by brianr in eclipse, flash builder, mac on October 8th, 2010
I just received my new 17in MBP so I pulled down a new version of Eclipse’s J2EE IDE and installed Flash Builder Plugin.
NOTE: You need to use the Eclipse Galileo Packages and the Carbon Install in order for this to work since FB is not compatible with the latets Eclipse build called Helio — here’s a link to the exact version of Eclipse that I used.
After a seemingly successful installation I received the following error code when starting up Eclipse: Error 6. I googled around a bit and found this link with this important tid-bit that fixed my issue:
- Reboot your Mac
- Navigate to your installation folder under /Adobe Flash Builder 4 Plug-in/install.support/AdobeFlashBuilderPluginSTIWrapperMac/
- Run Install.app from that location, to make sure all the required runtimes are installed successfully.
The restart seemed to do nothing, but running the installer did the trick. Good luck!
Maven2 Install Error: java.lang.OutOfMemoryError: Java heap space
If you ever run the maven command “maven install” and you run into the following error:
[INFO] ------------------------------------------------------------------------ [ERROR] FATAL ERROR [INFO] ------------------------------------------------------------------------ [INFO] Java heap space [INFO] ------------------------------------------------------------------------ [INFO] Trace java.lang.OutOfMemoryError: Java heap space
Try setting the MAVEN_OPTS memory to a larger max; eg:
Last login: Wed Jul 1 12:33:56 on ttys000 brian-rileys-macbook-pro:~ brianmriley$ export MAVEN_OPTS=-Xmx1024m brian-rileys-macbook-pro:~ brianmriley$ cd /Users/brianmriley/projects/spring-hibernate/workspaces/emp-mgmt-console/SpringActionscript/trunk/core brian-rileys-macbook-pro:core brianmriley$ mvn install [INFO] Scanning for projects... [INFO] ------------------------------------------------------------------------ [INFO] Building Spring ActionScript [INFO] task-segment: [install] [INFO] ------------------------------------------------------------------------ ... [INFO] Installing /Users/brianmriley/projects/spring-hibernate/workspaces/emp-mgmt-console/SpringActionscript/trunk/core/target/spring-actionscript-0.8-SNAPSHOT.swc to /Users/brianmriley/.m2/repository/org/springextensions/spring-actionscript/0.8-SNAPSHOT/spring-actionscript-0.8-SNAPSHOT.swc [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESSFUL [INFO] ------------------------------------------------------------------------ [INFO] Total time: 33 seconds [INFO] Finished at: Wed Jul 01 14:58:34 EDT 2009 [INFO] Final Memory: 26M/115M [INFO] ------------------------------------------------------------------------
Just keep in mind this is a one time dealio and you’ll have to set this each time you run a maven install.