Are you using the jars from the downloads page (or from maven)? Those should be jarjar'ing the internal.util dependencies to hide them from users. So long as you're strictly using the downloaded or maven jars, things should be fine. If you attempt to link directly to the source or build yourself (without using the provided ant or maven scripts), there may be problems.
sam On Tue, Mar 8, 2011 at 7:55 PM, Jason Thrasher <[email protected]>wrote: > I'm finding that the "com.google.inject.internal" package is not > included in the final jar, even though it's in the source tree. > What's the roadmap for adding Guava support, as the package exclusion > is causing a problem for dependencies of guice-spring, namely > SpringIntegration.java. > > To fix the issue, I manually change SpringIntegration.java as: > //import static > com.google.inject.internal.util.Preconditions.checkNotNull; > import static com.google.common.base.Preconditions.checkNotNull; > and added the Guava dependency. > > Should I submit this as a patch (it's pretty trivial though)?... or am > I missing something? > > thanks, > Jason > > > > > On Mar 6, 3:57 pm, Sam Berlin <[email protected]> wrote: > > All, > > > > Guice 3.0 RC3 is now available. Please seehttp:// > code.google.com/p/google- > > guice/wiki/Guice30 for links and details of what changed since Guice 2.0 > > (and since the last Guice 3.0 snapshot). > > > > Thanks for reporting all the issues you've encountered from the various > > release candidates. Please test this RC also, and with luck we can > release > > it as the official Guice 3.0 release in time for > > GuiceCon<http://code.google.com/p/google-guice/wiki/GuiceCon2011> > > . > > > > Thanks! > > sam > > -- > You received this message because you are subscribed to the Google Groups > "google-guice" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/google-guice?hl=en. > > -- You received this message because you are subscribed to the Google Groups "google-guice" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-guice?hl=en.
