forked from salesforce/bazel-eclipse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.base-bazelrc
More file actions
17 lines (15 loc) · 734 Bytes
/
.base-bazelrc
File metadata and controls
17 lines (15 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# **********************************
# JDK
# **********************************
# See the document //docs/dev/jdk.md for an explanation of why we target JDK 8
build --javacopt="--release 8"
# **********************************
# BUILD TROUBLESHOOTING
# **********************************
# These settings make it easier to figure out why a build may not have gone as expected.
# By setting test_output=errors, we get the error output directly in stdout (instead of just
# a link to a log file). The explain parameter outputs the build plan for the last build,
# which can be somewhat helpful if you wonder why some packages get rebuilt.
build --test_output=errors
build --verbose_explanations
build --explain=/tmp/bazel_explain.txt