You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the latest plugin (v2019.04.15) with bazel 0.25, debugging a java_binary fails with:
ERROR: /private/var/tmp/.../external/intellij_aspect/java_classpath.bzl:3:1: file ':intellij_info_impl.bzl' does not contain symbol 'artifact_location'.
ERROR: Extension file 'java_classpath.bzl' has errors.
ERROR: Analysis of aspect '@intellij_aspect//:java_classpath.bzl%java_classpath_aspect of ... failed; build aborted: Extension file 'java_classpath.bzl' has errors.
This is due to the incompatible_no_transitive_loads change in bazel 0.25. bazelbuild/bazel#5636
Workaround is to disable this bazel feature by setting incompatible_no_transitive_loads=false on command line or in .bazelrc
The text was updated successfully, but these errors were encountered:
Thanks for letting us know -- I'll fix this upstream, which will land in the release after next.
In the meantime, you can work around this by disabling hotswapping (the only code which uses this aspect), by adding "java.hotswapping.enabled=0" to an ".intellij-experiments' file in your home directory (e.g. ~/.intellij-experiments on linux)
When using the latest plugin (v2019.04.15) with bazel 0.25, debugging a java_binary fails with:
This is due to the
incompatible_no_transitive_loads
change in bazel 0.25. bazelbuild/bazel#5636Workaround is to disable this bazel feature by setting
incompatible_no_transitive_loads=false
on command line or in .bazelrcThe text was updated successfully, but these errors were encountered: