Launch mac eclipse with environment variables set

There is an alternate solution which involves replacing the executable that is run by MacOS X when the user launches the Eclipse application with a shell wrapper that sets up the environment. Create an empty text file called “eclipse.sh” in the Eclipse application bundle directory /Applications/eclipse/Eclipse.app/Contents/MacOS. Open the eclipse.sh in a text editor an enter … Read more

What installable component provides ‘launch groups’ in Eclipse?

While E-Riz’s answer is correct, if you just want to add the “Launch Group” feature onto an existing eclipse install, you can install just the extension called “C/C++ Remote Launch”. (org.eclipse.cdt.launch.remote) Note: this extension is entirely language independent, can be added to any type of eclipse install. The “C/C++” part is probably just because it … Read more

Increase JVM max heap size for Eclipse

It is possible to increase heap size allocated by the Java Virtual Machine (JVM) by using command line options. -Xms<size> set initial Java heap size -Xmx<size> set maximum Java heap size -Xss<size> set java thread stack size If you are using the tomcat server, you can change the heap size by going to Eclipse/Run/Run Configuration … Read more

How to install the GlassFish 3 server adapter with Eclipse Helios 3.6

Eclipse Helios 3.6 At the time of writing this (07/26/2010), there are in theory two ways to install the GlassFish Server adapter: via the Eclipse Marketplace or via an update site. Update: As mentioned by Thorbjørn in a comment, the adapter is now (09/24/2010) available in the Additional server adapters dialogue (the “normal way”). New … Read more

How do I Install JBoss AS / WildFly Server in Eclipse for Java EE

Install the most recent JBoss Tools. Go to Help > Install New Software. Set Work with to the following URL depending on Eclipse version: 4.8+ (Photon): https://download.jboss.org/jbosstools/photon/stable/updates/ 4.7 (Oxygen): http://download.jboss.org/jbosstools/oxygen/stable/updates/ 4.6 (Neon): https://download.jboss.org/jbosstools/neon/stable/updates/ 4.5 (Mars): http://download.jboss.org/jbosstools/mars/stable/updates/ 4.4 (Luna): http://download.jboss.org/jbosstools/updates/stable/luna/ 4.3 (Kepler): http://download.jboss.org/jbosstools/updates/stable/kepler/ 4.2 (Juno): http://download.jboss.org/jbosstools/updates/stable/juno/ 3.7 (Indigo): http://download.jboss.org/jbosstools/updates/stable/indigo/ 3.6 (Helios): http://download.jboss.org/jbosstools/updates/stable/helios/ Press Enter In the … Read more