summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitHub <noreply@github.com>2023-05-13 04:02:10 +0000
committerGitHub <noreply@github.com>2023-05-13 04:02:10 +0000
commitc344240d30af80f24303828061e3c046b64fc210 (patch)
treed7b3104af72e2d00002d74171fd307ea5d98002f
parentc4d0e0af905a20dfa939a8266431f42ca7f47720 (diff)
downloadrabbitmq-server-git-c344240d30af80f24303828061e3c046b64fc210.tar.gz
bazel run gazelle
-rw-r--r--deps/rabbitmq_cli/BUILD.bazel16
1 files changed, 8 insertions, 8 deletions
diff --git a/deps/rabbitmq_cli/BUILD.bazel b/deps/rabbitmq_cli/BUILD.bazel
index cf212f27c0..d58b493bf5 100644
--- a/deps/rabbitmq_cli/BUILD.bazel
+++ b/deps/rabbitmq_cli/BUILD.bazel
@@ -13,25 +13,25 @@ load(
mix_archive_build(
name = "parallel_stream_ez",
srcs = ["@parallel_stream//:sources"],
- archives = ["@hex//:archive"],
out = "parallel_stream.ez",
+ archives = ["@hex//:archive"],
)
mix_archive_build(
name = "csv_ez",
srcs = ["@csv//:sources"],
+ out = "csv.ez",
archives = ["@hex//:archive"],
ez_deps = [
":parallel_stream_ez",
],
- out = "csv.ez",
)
mix_archive_build(
name = "json_ez",
srcs = ["@json//:sources"],
- archives = ["@hex//:archive"],
out = "json.ez",
+ archives = ["@hex//:archive"],
)
# Note: All the various rabbitmq-* scripts are just copies of rabbitmqctl
@@ -112,6 +112,11 @@ plt(
"public_key",
"runtime_tools",
],
+ ez_deps = [
+ ":parallel_stream_ez",
+ ":csv_ez",
+ ":json_ez",
+ ],
ignore_warnings = True,
libs = [":elixir"],
deps = [
@@ -120,11 +125,6 @@ plt(
"//deps/rabbit:erlang_app",
"//deps/rabbit_common:erlang_app",
],
- ez_deps = [
- ":parallel_stream_ez",
- ":csv_ez",
- ":json_ez",
- ],
)
dialyze(