Skip to content
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

Replace usage of deprecated Starlark java provider with JavaInfo provider #11406

Merged
merged 1 commit into from
May 7, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/install/install.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ Note:
MainClassInfo(
main_class = Name of main class to run ("name.class.main")
classpath = List contained in
ctx.attr.target.java.compilation_info.runtime_classpath
ctx.attr.target[JavaInfo].compilation_info.runtime_classpath
filename = Java launcher file name
)

Expand Down
2 changes: 1 addition & 1 deletion tools/skylark/drake_java.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ MainClassInfo = provider()

# Generate a launcher file to run installed java binaries
def _drake_java_binary_install_launcher_impl(ctx):
classpath = ctx.attr.target.java.compilation_info.runtime_classpath
classpath = ctx.attr.target[JavaInfo].compilation_info.runtime_classpath
return [
MainClassInfo(
main_class = ctx.attr.main_class,
Expand Down