Revert "Bazel bits for #9926"

This reverts commit 8d402e75b7.
This commit is contained in:
Michal Kuratczyk 2023-11-17 13:07:28 +01:00
parent 5459975c5c
commit db56f662af
No known key found for this signature in database
1 changed files with 10 additions and 0 deletions

View File

@ -17,6 +17,13 @@ mix_archive_build(
archives = ["@hex//:archive"],
)
mix_archive_build(
name = "json_ez",
srcs = ["@json//:sources"],
out = "json.ez",
archives = ["@hex//:archive"],
)
# Note: All the various rabbitmq-* scripts are just copies of rabbitmqctl
rabbitmqctl(
name = "rabbitmqctl",
@ -32,6 +39,7 @@ rabbitmqctl(
license_files = glob(["LICENSE*"]),
source_deps = {
"@csv//:sources": "csv",
"@json//:sources": "json",
},
visibility = ["//visibility:public"],
deps = [
@ -101,6 +109,7 @@ plt(
],
ez_deps = [
":csv_ez",
":json_ez",
],
ignore_warnings = True,
libs = [":elixir"],
@ -142,6 +151,7 @@ rabbitmqctl_test(
source_deps = {
"@amqp//:sources": "amqp",
"@csv//:sources": "csv",
"@json//:sources": "json",
"@temp//:sources": "temp",
"@x509//:sources": "x509",
},