1

I have a GWT application with several modules. I have deleted one that I don't need anymore (JasperReportTest) - I deleted JasperReportTest.gwt.xml file and classes referring to that module.

But when I try to run my application in development mode I get this in my console:

Loading modules
com.mycompany.myapp.JasperReportTest
  [ERROR] Unable to find 'com/mycompany/myapp/JasperReportTest.gwt.xml' on 
your classpath; could be a typo, or maybe you forgot to include a 
classpath entry for source? 

If I run compile everything works fine. How can I delete the module, so development mode won't try to load it? I searched project for string "JasperReportTest" and I didn't find it. Where is loading of this module written?

Unihedron
  • 10,902
  • 13
  • 62
  • 72
Sobis
  • 1,385
  • 4
  • 20
  • 29

3 Answers3

1

Solved - problem was that in Run configurations I had that module in startup command

Sobis
  • 1,385
  • 4
  • 20
  • 29
0

Have a look at the Google → Web Toolkit in your project's properties.

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

I was getting the same behaviour, and the good place to remove the reference to the unwanted module is in "run configuration" dialog but in the "arguments" tab', not in GWT one.

Overnuts
  • 783
  • 5
  • 17