Eclipse cannot create Groovy class in 4.3.2

I just installed Eclipse 4.3.2 (EE) and then immediately installed the Groovy plugin for it (from this link - I used it http://dist.springsource.org/release/GRECLIPSE/e4.2/as the plugin site).

After restarting Eclipse, I created a new Groovy project and then added a new package ( com.me.myapp), and then tried to add a new Groovy class to this package.

This prompted Eclipse to open a dialog Create new Groovy Class. I added a name for my class ( ExampleGroovy), and then click Finish to create the class.

After that, I get the following error:

Errors occurred during the build.
Errors running builder 'Java Builder' on project 'MyApp'.
    org/codehaus/jdt/groovy/integration/LanguageSupportFactory

Did I misconfigure Groovy, or did the creators of the Groovy-Eclipse plugin publish something that just doesn't work?

+4
source share
1 answer

The update site URL for Kepler may be incorrect. This should be http://dist.springsource.org/release/GRECLIPSE/e4.3 .

I personally always use this update site http://download.springsource.com/release/TOOLS/update/e4.3 and choose Groovy Eclipse. What is your version of JDK?

+4
source

Source: https://habr.com/ru/post/1535123/


All Articles