forked from cloudamqp/rabbitmq-vshovel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
34 lines (27 loc) · 855 Bytes
/
Makefile
File metadata and controls
34 lines (27 loc) · 855 Bytes
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
30
31
32
33
34
PROJECT = rabbitmq_vshovel
PROJECT_DESCRIPTION = Variable Data Shovel for RabbitMQ
PROJECT_MOD = rabbit_vshovel
define PROJECT_ENV
[
{defaults, [
{prefetch_count, 1},
{ack_mode, on_confirm},
{publish_fields, []},
{publish_properties, []},
{reconnect_delay, 5}
]}
]
endef
define PROJECT_APP_EXTRA_KEYS
{broker_version_requirements, []}
endef
DEPS = rabbit_common amqp_client rabbit
TEST_DEPS = rabbitmq_ct_helpers rabbitmq_ct_client_helpers
LOCAL_DEPS = public_key crypto ssl inets
DEP_PLUGINS = rabbit_common/mk/rabbitmq-plugin.mk
# FIXME: Use erlang.mk patched for RabbitMQ, while waiting for PRs to be
# reviewed and merged.
ERLANG_MK_REPO = https://github.com/rabbitmq/erlang.mk.git
ERLANG_MK_COMMIT = rabbitmq-tmp
include rabbitmq-components.mk
include erlang.mk