I just wondered how to fix my project to avoid this error after I moved my project to a new computer from a 2.5RC setup to a 2.5 setup. It was working before. Of course HtmlTemplates may not exist in the 2.5 client-side library, but I'm not bothered about that, I just want my UI to show:
11:24:08.060 [ERROR] [myapp] Failed to create an instance of 'org.myapp.client.UI' via deferred binding
java.lang.RuntimeException: Deferred binding failed for 'org.myapp.client.UIDesktop$Binder' (did you forget to inherit a required module?)
at com.google.gwt.dev.shell.GWTBridgeImpl.create(GWTBridgeImpl.java:53)
...
Caused by: java.lang.NoClassDefFoundError: com/google/gwt/uibinder/rebind/model/HtmlTemplates
at com.google.gwt.uibinder.rebind.UiBinderWriter.<init>(UiBinderWriter.java:181)
at com.google.gwt.uibinder.rebind.UiBinderGenerator.generateOnce(UiBinderGenerator.java:188)
...
Caused by: java.lang.ClassNotFoundException: com.google.gwt.uibinder.rebind.model.HtmlTemplates
at java.net.URLClassLoader$1.run(Unknown Source)
I have just the 2.5 .jars (not 2.5RC), and .classpath seems to be all pointing to them, I've tried clearing the gwt-Cache, the generated .js file, running "Clean Project" all to no avail.