-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.bazelrc
31 lines (25 loc) · 1.37 KB
/
.bazelrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Import Aspect bazelrc presets
import %workspace%/.aspect/bazelrc/bazel7.bazelrc
import %workspace%/.aspect/bazelrc/convenience.bazelrc
import %workspace%/.aspect/bazelrc/correctness.bazelrc
import %workspace%/.aspect/bazelrc/debug.bazelrc
import %workspace%/.aspect/bazelrc/javascript.bazelrc
import %workspace%/.aspect/bazelrc/performance.bazelrc
build --java_language_version=21
build --java_runtime_version=21
build --tool_java_language_version=21
build --tool_java_runtime_version=21
common --@aspect_rules_ts//ts:skipLibCheck=honor_tsconfig
build --legacy_external_runfiles # https://github.com/bazelbuild/rules_kotlin/issues/924, Spring Boot rules also depend on this
## Stamping (see scripts/README.md)
# This is used to stamp the build with the current git commit
build:release --stamp
build:release --workspace_status_command=scripts/get_workspace_status
run:release --stamp
run:release --workspace_status_command=scripts/get_workspace_status
## End stamping
# Load any settings & overrides specific to the current user from `.aspect/bazelrc/user.bazelrc`.
# This file should appear in `.gitignore` so that settings are not shared with team members. This
# should be last statement in this config so the user configuration is able to overwrite flags from
# this file. See https://bazel.build/configure/best-practices#bazelrc-file.
try-import %workspace%/.aspect/bazelrc/user.bazelrc