diff --git a/rules/jar.bzl b/rules/jar.bzl index 69d054a..dfbb901 100644 --- a/rules/jar.bzl +++ b/rules/jar.bzl @@ -149,7 +149,7 @@ def clojure_jar_impl(ctx): output = args_file, content = json.encode(compile_args)) - inputs = ctx.files.srcs + ctx.files.resources + dep_info.transitive_deps.to_list() + dep_info.transitive_runtime_deps.to_list() + native_libs + [args_file] + ctx.files._worker_runtime + inputs = ctx.files.srcs + ctx.files.resources + dep_info.transitive_deps.to_list() + dep_info.transitive_runtime_deps.to_list() + native_libs + [args_file] + ctx.files._worker_runtime + shim_info.transitive_runtime_deps.to_list() ctx.actions.run( executable=ctx.executable.worker,