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?