-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update .bazelrc Java Language Version Flags to Fix New Rules Java8 De…
…faults Now that I've moved to using rules_java for java_*() rules, it turns out that they're defaulting to Java8 language version even though I'm specifying remoteJDK11 Java runtime. These new flags in .bazelrc ensure that rules_java is configured to properly use language version 11.
- Loading branch information
1 parent
24e5987
commit b578df0
Showing
4 changed files
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
common --enable_bzlmod | ||
common --java_runtime_version=remotejdk_11 | ||
build --java_language_version=11 | ||
build --tool_java_language_version=11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module(name = "example-claro-module") | ||
|
||
bazel_dep(name = "claro-lang", version = "0.1.507") | ||
bazel_dep(name = "claro-lang", version = "0.1.508") |