We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Original issue created by gerd.riesselmann on 2012-08-03 at 08:46 PM
I get the following error when using the 13.0 jar from Maven repositories against Scala 2.9.2:
error while loading Cache, Missing dependency 'class javax.annotation.Nullable', required by ..../scala_2.9.2/compile/guava-13.0.jar(com/google/common/cache/Cache.class)
It works with 12.0.1
The text was updated successfully, but these errors were encountered:
Original comment posted by cpovirk@google.com on 2012-08-03 at 08:52 PM
See this thread for some discussion:
https://groups.google.com/d/msg/guava-discuss/LV0oLNFpnAU/pp40shiiBKMJ
Scala requires annotation classes to be present, contrary to the way they were designed.
"This is due to the Scala compiler, which needs all of the artifacts left in the byte-code."
"I was able to work around the problem by adding "com.google.code.findbugs" % "jsr305" % "1.3.+" in my list of dependencies."
Status: WorkingAsIntended
WorkingAsIntended
Sorry, something went wrong.
<dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.2</version> </dependency>
No branches or pull requests
Original issue created by gerd.riesselmann on 2012-08-03 at 08:46 PM
I get the following error when using the 13.0 jar from Maven repositories against Scala 2.9.2:
error while loading Cache, Missing dependency 'class javax.annotation.Nullable', required by ..../scala_2.9.2/compile/guava-13.0.jar(com/google/common/cache/Cache.class)
It works with 12.0.1
The text was updated successfully, but these errors were encountered: