Skip to content

Commit

Permalink
Merge pull request #5 from cgruber/restore_transitive_compile_time_jars
Browse files Browse the repository at this point in the history
Make the compile time classpath use the full transitive compile classpath
  • Loading branch information
cgruber authored Jun 12, 2019
2 parents aaa819c + 2d86189 commit fc3c0db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kotlin/internal/jvm/compile.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def kt_jvm_compile_action(ctx, rule_kind, output_jar):
# TODO extract and move this into common. Need to make it generic first.
friends = getattr(ctx.attr, "friends", [])
deps = [d[JavaInfo] for d in friends + ctx.attr.deps] + [toolchain.jvm_stdlibs]
compile_jars = java_common.merge(deps).compile_jars
compile_jars = java_common.merge(deps).transitive_compile_time_jars

if len(friends) == 0:
module_name = _utils.derive_module_name(ctx)
Expand Down

0 comments on commit fc3c0db

Please sign in to comment.