On Thursday, May 23, 2013 12:48:50 PM UTC+2, Thomas Käfer wrote: > > Okey! So you've helped me make a huge step forward yesterday, thanks for > that Thomas! > > Now I've got a new problem I can't find my way around: I've tried to move > the App.java & App*.gwt.xml into from the package "group.id" into the > package "group.id.client" package, and adapted the references within the > pom.xml and gwt.xml files (and also in gwt.xml change <source path="" /> to > <source path="client" /> ), but when I try to do a maven build it always > fails: > > [INFO] Compiling module group.id.client.App >> [INFO] Finding entry point classes >> [INFO] [ERROR] Unable to find type 'group.id.client.App' >> [INFO] [ERROR] Hint: Previous compiler errors may have made this >> type unavailable >> [INFO] [ERROR] Hint: Check the inheritance chain from your >> module; it may not be inheriting a required module or a module may not be >> adding its source path entries properly > > > The step "Finding entry point classes" takes quite long, around 5 seconds > before the failure shows.. > When I undo the move and restore the references to group.id.App it works > again as expected. > > Do you have an idea, what could cause that? Have I missed something that > needs adapting when moving the module & entrypoint? >
If you use <source path="client"/> then the gwt.xml has to be in group.id, otherwise only group.id.client.client.* classes are in the source path. group.id.client.App is not an thus cannot be found. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
