From 20ff6ac82b801acbf28678e0ed325bbce957640e Mon Sep 17 00:00:00 2001 From: hvadehra Date: Fri, 11 Aug 2023 09:27:09 +0200 Subject: [PATCH] Migrate usages of deprecated `JavaInfo` fields (#1005) --- kotlin/internal/jvm/compile.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kotlin/internal/jvm/compile.bzl b/kotlin/internal/jvm/compile.bzl index 80cbf7a81..327a0bdc2 100644 --- a/kotlin/internal/jvm/compile.bzl +++ b/kotlin/internal/jvm/compile.bzl @@ -261,7 +261,7 @@ def _run_merge_jdeps_action(ctx, toolchains, jdeps, outputs, deps): ) # For sandboxing to work, and for this action to be deterministic, the compile jars need to be passed as inputs - inputs = depset(jdeps, transitive = [depset([], transitive = [dep.transitive_deps for dep in deps])]) + inputs = depset(jdeps, transitive = [depset([], transitive = [dep.transitive_compile_time_jars for dep in deps])]) ctx.actions.run( mnemonic = mnemonic,