Is it possible to install the Google plugin in Eclipse 4.x?

I haven’t developed eclipse plugins before, and I don’t know how this happens, but I’m interested, since the GPE is now open source, is it easy to recompile the plugin source to create a version compatible with eclipse 4.1 or 4.2, or it will need someone Something with plugin development experience?

+5
source share
3 answers

, . seanf .

+3

Here's a step-by-step guide on how to install the Google plugin on Eclipse Juno (release candidate).
It can also be found at https://plus.google.com/110140945975184013033/posts/ePFpQZYhPQq

How to Install GWT Plugin for Eclipse on 3.8 or Juno:

1. Download zipped update site for 3.7 
   from http://code.google.com/eclipse/docs/install-from-zip.html
2. Unzip content.jar; rm content.jar
3. Edit content.xml; change 
   <required namespace='org.eclipse.equinox.p2.iu' 
       name='org.eclipse.platform.feature.group' range='[3.7.0,3.8.0)'/> 
   to 
   <required namespace='org.eclipse.equinox.p2.iu' 
       name='org.eclipse.platform.feature.group' range='3.7.0'/>
4. jar cMf content.jar content.xml (zip won't work)
5. Install from local update site
+2
source

All Articles