0

I'm using Eclipse Indigo on Win XP with Java 6. I have Maven 3.0.3 and have a GWT (2.1) project, which I have imported into Eclipse. How do I create a run configuration that will run the GWT project in develpoment mode? I tried a run configuration with these goals:

clean gwt:run

But this fails to run in debug mode, since my breakpoint immediately upon entering the "onModuleLoad" method never gets triggered.

Thanks, - Dave

Dave
  • 15,639
  • 133
  • 442
  • 830

2 Answers2

0

Have you seen http://code.google.com/intl/fr-FR/eclipse/docs/faq.html#gwt_with_maven ?

Follow the "if you'really not able to use Eclipse for Java EE" steps for best experience.

Thomas Broyer
  • 64,353
  • 7
  • 91
  • 164
0

You should run it with:

gwt:debug

For more information about goals check gwt-maven-plugin.

Efthymis
  • 1,326
  • 11
  • 13
kospiotr
  • 1,837
  • 2
  • 18
  • 29