You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 28, 2024. It is now read-only.
java_infos = [i[JavaInfo] for i in ctx.attr.imports]
ct = depset(transitive = [info.transitive_compile_time_jars for info in java_infos])
rt = depset(transitive = [info.transitive_runtime_jars for info in java_infos])
return [
JavaDependencyInfo(
compile_time_class_path_jars = ct,
run_time_class_path_jars = rt,
),
java_common.merge(java_infos),
]
legacy_java_import = rule(
doc = "Wraps legacy Java targets (i.e. those providing `JavaInfo` but not `JavaDependencyInfo`) so that they can be used as a dependency of these new Java rules.",