forked from rabbitmq/rabbitmq-metronome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE.bazel
29 lines (23 loc) · 891 Bytes
/
WORKSPACE.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "bazel-erlang",
strip_prefix = "bazel-erlang-master",
urls = ["https://github.com/rabbitmq/bazel-erlang/archive/master.zip"],
)
http_archive(
name = "rabbitmq-server",
strip_prefix = "rabbitmq-server-master",
urls = ["https://github.com/rabbitmq/rabbitmq-server/archive/master.zip"],
)
load("@rabbitmq-server//:workspace_helpers.bzl", "rabbitmq_external_deps")
rabbitmq_external_deps()
http_archive(
name = "rabbitmq_ct_helpers",
strip_prefix = "rabbitmq-ct-helpers-master",
urls = ["https://github.com/rabbitmq/rabbitmq-ct-helpers/archive/master.zip"],
)
http_archive(
name = "rabbitmq_ct_client_helpers",
strip_prefix = "rabbitmq-ct-client-helpers-master",
urls = ["https://github.com/rabbitmq/rabbitmq-ct-client-helpers/archive/master.zip"],
)