From a5a5d66a0ca9440f9a247fb8080cf78a7b82a8e4 Mon Sep 17 00:00:00 2001 From: Chanseok Oh Date: Wed, 12 Jan 2022 16:09:14 -0500 Subject: [PATCH] fix: expose extra deps transitively to library users --- rules_java_gapic/java_gapic_pkg.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules_java_gapic/java_gapic_pkg.bzl b/rules_java_gapic/java_gapic_pkg.bzl index c9bfb01560..97438b1f3c 100644 --- a/rules_java_gapic/java_gapic_pkg.bzl +++ b/rules_java_gapic/java_gapic_pkg.bzl @@ -166,7 +166,7 @@ def _java_gapic_build_configs_pkg_impl(ctx): substitutions = dict(ctx.attr.static_substitutions) substitutions["{{extra_deps}}"] = _construct_extra_deps({ - "implementation": ctx.attr.deps, + "api": ctx.attr.deps, "testImplementation": ctx.attr.test_deps, }, substitutions)