-
Notifications
You must be signed in to change notification settings - Fork 278
New issue
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
How to debug "weird" error messages #553
Comments
These rules require you to declare all depencies you use. You don’t get transitive deps by default. It looks like you are missing some of the dependencies of akka actor. |
The error message from scalac is pretty unhelpful. It misleads users based on the assumptions from other build tools. Maybe we should see if we can hook in and change the error message there. If you use —java_strict_deps=error you may get a better error message. |
Thanks. That did help.
It also misleads Bazel veterans ;). |
@abergmeier did you try |
I think there is no |
Gave option B a spin and it reduced some noise.
which has a too high noise to signal ratio for me. (Would help to shorten the paths and to remap the jars to maven).
|
bazel build --@rules_jvm_external//settings:stamp_manifest=True //...
|
Due to Bazels sandboxing, it seems like I get "weird" error messages like:
in the input file it states:
How should one debug that problem? I had a similar error message before and then rebuilding seem to have done the trick!?
The text was updated successfully, but these errors were encountered: