-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add --incompatible_java_info_merge_runtime_module_flags #20037
Closed
timothyg-stripe
wants to merge
1
commit into
bazelbuild:master
from
timothyg-stripe:java_info_incompatible
Closed
Add --incompatible_java_info_merge_runtime_module_flags #20037
timothyg-stripe
wants to merge
1
commit into
bazelbuild:master
from
timothyg-stripe:java_info_incompatible
Conversation
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
github-actions
bot
added
awaiting-review
PR is awaiting review from an assigned reviewer
team-Rules-Java
Issues for Java rules
labels
Nov 3, 2023
timothyg-stripe
force-pushed
the
java_info_incompatible
branch
from
November 8, 2023 18:04
521dbb0
to
c3a7e6a
Compare
sgowroji
added
awaiting-user-response
Awaiting a response from the author
awaiting-review
PR is awaiting review from an assigned reviewer
and removed
awaiting-review
PR is awaiting review from an assigned reviewer
awaiting-user-response
Awaiting a response from the author
labels
Nov 10, 2023
hvadehra
approved these changes
Nov 16, 2023
hvadehra
added
awaiting-PR-merge
PR has been approved by a reviewer and is ready to be merge internally
and removed
awaiting-review
PR is awaiting review from an assigned reviewer
labels
Nov 16, 2023
github-actions
bot
removed
the
awaiting-PR-merge
PR has been approved by a reviewer and is ready to be merge internally
label
Nov 16, 2023
@bazel-io fork 7.0.0 |
iancha1992
pushed a commit
to iancha1992/bazel
that referenced
this pull request
Nov 17, 2023
Change the behavior of `JavaInfo` constructor to be more like `java_info_for_compilation`, by merging in the `add_exports` and `add_opens` flags for `runtime_deps` in addition to just `deps` and `exports`. Guard it under an `--incompatible_` flag which defaults to false, but I'm hoping to make it default to true in 8.x. Second half of bazelbuild#20033 Closes bazelbuild#20037. PiperOrigin-RevId: 582982387 Change-Id: Ibff680f71efed82f20da7d9ee83f0bfa7e5f5697
iancha1992
pushed a commit
to iancha1992/bazel
that referenced
this pull request
Nov 17, 2023
Change the behavior of `JavaInfo` constructor to be more like `java_info_for_compilation`, by merging in the `add_exports` and `add_opens` flags for `runtime_deps` in addition to just `deps` and `exports`. Guard it under an `--incompatible_` flag which defaults to false, but I'm hoping to make it default to true in 8.x. Second half of bazelbuild#20033 Closes bazelbuild#20037. PiperOrigin-RevId: 582982387 Change-Id: Ibff680f71efed82f20da7d9ee83f0bfa7e5f5697
timothyg-stripe
added a commit
to timothyg-stripe/bazel
that referenced
this pull request
Nov 18, 2023
Change the behavior of `JavaInfo` constructor to be more like `java_info_for_compilation`, by merging in the `add_exports` and `add_opens` flags for `runtime_deps` in addition to just `deps` and `exports`. Guard it under an `--incompatible_` flag which defaults to false, but I'm hoping to make it default to true in 8.x. Second half of bazelbuild#20033 Closes bazelbuild#20037. PiperOrigin-RevId: 582982387 Change-Id: Ibff680f71efed82f20da7d9ee83f0bfa7e5f5697
timothyg-stripe
added a commit
to timothyg-stripe/bazel
that referenced
this pull request
Nov 18, 2023
Change the behavior of `JavaInfo` constructor to be more like `java_info_for_compilation`, by merging in the `add_exports` and `add_opens` flags for `runtime_deps` in addition to just `deps` and `exports`. Guard it under an `--incompatible_` flag which defaults to false, but I'm hoping to make it default to true in 8.x. Second half of bazelbuild#20033 Closes bazelbuild#20037. PiperOrigin-RevId: 582982387 Change-Id: Ibff680f71efed82f20da7d9ee83f0bfa7e5f5697
meteorcloudy
pushed a commit
that referenced
this pull request
Nov 20, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Change the behavior of
JavaInfo
constructor to be more likejava_info_for_compilation
, by merging in theadd_exports
andadd_opens
flags forruntime_deps
in addition to justdeps
andexports
. Guard it under an--incompatible_
flag which defaults to false, but I'm hoping to make it default to true in 8.x.Second half of #20033