
The Bazel IntelliJ plugin currently throws an error when trying to do a sync in IntelliJ. Until that error is fixed, add a temporary option which let's us ignore that specific issue. Change-Id: I5b0b9d402086042c1d7e6cea2060ebc4977539d6
28 lines
557 B
Plaintext
28 lines
557 B
Plaintext
# The project view file (.bazelproject) is used to import Gerrit Bazel packages into the IDE.
|
|
#
|
|
# See: https://ij.bazel.io/docs/project-views.html
|
|
|
|
directories:
|
|
.
|
|
-bin
|
|
-eclipse-out
|
|
-contrib
|
|
-gerrit-package-plugins
|
|
-logs
|
|
-./.metadata
|
|
-./.settings
|
|
-./.apt_generated
|
|
|
|
targets:
|
|
//...:all
|
|
|
|
java_language_level: 8
|
|
|
|
workspace_type: java
|
|
|
|
build_flags:
|
|
--javacopt=-g
|
|
# Temporarily add an option to work around an error in the Bazel IntelliJ plugin.
|
|
# TODO(aliceks): Remove when issue is fixed.
|
|
--incompatible_depset_is_not_iterable=false
|