We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cbea70 commit a8f7999Copy full SHA for a8f7999
rules_java_gapic/java_gapic_pkg.bzl
@@ -25,7 +25,8 @@ def _wrapPropertyNamesInBraces(properties):
25
# the version of protobuf defined in googleapis is higher than protobuf
26
# defined in gax-java/dependencies.properties, use this replacement to
27
# sync the two versions.
28
-SYNCED_PROPERTIES = PROPERTIES | {"version.com_google_protobuf": PROTOBUF_JAVA_VERSION}
+SYNCED_PROPERTIES = dict(PROPERTIES)
29
+SYNCED_PROPERTIES.update({"version.com_google_protobuf": PROTOBUF_JAVA_VERSION})
30
_PROPERTIES = _wrapPropertyNamesInBraces(SYNCED_PROPERTIES)
31
32
# ========================================================================
0 commit comments