0

I am using Eclipse, Version: Indigo Service Release 1.

My GWT version is 2.4.0. I installed everything like GWT and Maven related plugins.

I am trying to import a existing gwt-maven project. When importing, I see this dialog:

error when importing

Can anyone tell me why and how to solve it?

Jackson Tale
  • 25,428
  • 34
  • 149
  • 271

1 Answers1

0

Google is your dear friend.

By entering "no marketplace entries found to handle gwt-mavn-plugin", I got:

Error when importing Maven-GWT project ("No marketplace entries found to handle gwt-maven-plugin")

gwt-maven-plugin with Eclipse Indigo

Eclipse: Import Maven project, missing maven-gae-plugin

EDIT :

Actually I would advise you to use maven from the command line instead of using the Maven plugin in Eclipse as I had exprienced many issues with it.

From the command line, run the following commands:

  • To compile and install : mvn clean install
  • to generate eclipse project: mvn eclipse:eclipse

Afterwards, from your eclipse, import your generated project as a normal project and voila!

Hope this helps!

Community
  • 1
  • 1
Adel Boutros
  • 10,205
  • 7
  • 55
  • 89
  • Hello, thanks for the links. I did google it. But none of them solved my problem. For the first link, there is no answer actually. none of the answers are correct. you can find it when you read the comment. For the second link you gave, the answer is talking about giving up Maven and manually do things. as I am working with other team mate, I can't do that and I have to keep consistency with mates. For the 3rd link, mine is about maven-gwt, not maven-gae, and again, no correct answers for that question even. – Jackson Tale Oct 12 '12 at 09:55