Doesn't seem to help. I did already have a dependency on User. Here's the full list of inherits from my gwtxml:
<inherits name='com.google.gwt.user.User'/> > > <inherits name='com.google.gwt.uibinder.UiBinder'/> > > <inherits name="com.google.gwt.logging.Logging"/> > > <inherits name='com.google.gwt.user.theme.clean.Clean'/> > > >> <inherits name="com.google.common.collect.Collect"/> > > <inherits name="com.google.gwt.inject.Inject"/> > > <inherits name="com.google.common.base.Base"/> > > <inherits name="com.google.gwt.ajaxloader.AjaxLoader" /> > > <inherits name="com.google.web.bindery.autobean.AutoBean"/> > > <inherits name='gwt.g3d.g3d'/> > > <!-- some internal modules --> > > <inherits name="elemental.Elemental" /> > > On Sun, Oct 19, 2014 at 3:03 PM, 'Goktug Gokdogan' via GWT Contributors < [email protected]> wrote: > Does adding inherit to c.g.gwt.uibinder.UiBinder fix the issue? > > We broke many cyclic dependencies around c.g.gwt.user.User. In this > process, I dropped many unneeded dependencies to User from smaller modules. > As most developers directly depend on User that doesn't have any affect. > However if they were depending another module (e.g. Validation) and getting > User dependency transitively from there, they will break. > > I didn't close analyzed but some potential packages that no longer depend > on User are: > > com/google/gwt/validation/Validation.gwt.xml > com/google/gwt/xml/XML.gwt.xml > com/google/web/bindery/autobean/AutoBean.gwt.xml > com/google/gwt/storage/Storage.gwt.xml > com/google/gwt/i18n/... > com/google/gwt/event/dom/... > > > On Sun, Oct 19, 2014 at 12:51 PM, Erik Kuefler <[email protected]> wrote: > >> I'm seeing what looks like a regression in my project. I get the >> following error when running GWT compilation from Gradle after upping the >> version. The error doesn't seem very helpful except that it's possibly >> related to code generation and UiBinder: >> >> Compiling module com.MyModule >>> >>> Computing all possible rebind results for >>> 'com.mypackage.MyView.MyUiBinder' >>> >>> Rebinding com.mypackage.MyView.MyUiBinder >>> >>> Checking rule <replace-with >>> class='com.mypackage.environment.TestEnvironment'/> >>> >>> [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 >>> >>> [ERROR] Errors in 'com/mypackage/MyViewView.java' >>> >>> [ERROR] Line 36: Failed to resolve >>> 'com.mypackage.MyView.MyUiBinder' via deferred binding >>> >>> [...many similar errors for other UiBinders...] >>> >> >> On Saturday, October 18, 2014 10:54:40 AM UTC-7, Daniel Kurka wrote: >>> >>> Hi all, >>> >>> since we are adding major features to GWT, we decided to change our >>> release process for GWT 2.7. I just published GWT 2.7.0-beta1 to maven >>> central and our file storage <http://goo.gl/pr7km3>. >>> We are doing this beta to get external feedback on incremental >>> compilation and GSS. >>> >>> Incremental compilation is now default with GWT 2.7 and replaces, >>> together with Super dev mode, the regular old dev mode. Inside of Google we >>> are already using it for a while now and most of the issues should have >>> already been dealt with, however we also want to make sure that external >>> users that might have slightly different use cases will have a working >>> 2.7.0 release. >>> >>> So please start testing with beta1 and give us lots of feedback on the >>> contributor >>> list >>> <https://groups.google.com/forum/#!forum/Google-Web-Toolkit-Contributors> >>> or on the issue tracker >>> <https://code.google.com/p/google-web-toolkit/issues/list>. Please keep >>> in mind that we did not do any release testing on beta1, so there might be >>> issues that you do not expect from a release candidate. >>> >>> Our current plan is to wait until the end of next week for any feedback. >>> If we do not find any serious external issues we will start the testing >>> process for an actual release candidate. >>> >>> -Daniel >>> >> -- >> You received this message because you are subscribed to the Google Groups >> "GWT Contributors" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected]. >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/google-web-toolkit-contributors/70fec55a-2563-4729-8397-29a326e5e9bf%40googlegroups.com >> <https://groups.google.com/d/msgid/google-web-toolkit-contributors/70fec55a-2563-4729-8397-29a326e5e9bf%40googlegroups.com?utm_medium=email&utm_source=footer> >> . >> >> For more options, visit https://groups.google.com/d/optout. >> > > -- > You received this message because you are subscribed to a topic in the > Google Groups "GWT Contributors" group. > To unsubscribe from this topic, visit > https://groups.google.com/d/topic/google-web-toolkit-contributors/vCELYDM2_tE/unsubscribe > . > To unsubscribe from this group and all its topics, send an email to > [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/google-web-toolkit-contributors/CAN%3DyUA3V5--75knM5eEmOcyc%2B-2Esrbdxxbrxkv%3DRmtozgd9LQ%40mail.gmail.com > <https://groups.google.com/d/msgid/google-web-toolkit-contributors/CAN%3DyUA3V5--75knM5eEmOcyc%2B-2Esrbdxxbrxkv%3DRmtozgd9LQ%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "GWT Contributors" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit-contributors/CANK5_0r3N0YbxsipH86HPXkmQxai1tyxVt6V-8V_9nkKdfp2Cg%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
