70 lines
2.1 KiB
Makefile
70 lines
2.1 KiB
Makefile
PROJECT = amqp10_client
|
|
PROJECT_DESCRIPTION = AMQP 1.0 client
|
|
|
|
define PROJECT_APP_EXTRA_KEYS
|
|
%% Hex.pm package informations.
|
|
{licenses, ["MPL-2.0"]},
|
|
{links, [
|
|
{"Website", "https://www.rabbitmq.com/"},
|
|
{"GitHub", "https://github.com/rabbitmq/rabbitmq-server/tree/main/deps/amqp10_client"}
|
|
]},
|
|
{build_tools, ["make", "rebar3"]},
|
|
{files, [
|
|
$(RABBITMQ_HEXPM_DEFAULT_FILES)
|
|
]}
|
|
endef
|
|
|
|
define HEX_TARBALL_EXTRA_METADATA
|
|
#{
|
|
licenses => [<<"MPL-2.0">>],
|
|
links => #{
|
|
<<"Website">> => <<"https://www.rabbitmq.com">>,
|
|
<<"GitHub">> => <<"https://github.com/rabbitmq/rabbitmq-server/tree/main/deps/amqp10_client">>
|
|
}
|
|
}
|
|
endef
|
|
|
|
# Release artifacts are put in $(PACKAGES_DIR).
|
|
PACKAGES_DIR ?= $(abspath PACKAGES)
|
|
|
|
BUILD_DEPS = rabbit_common elvis_mk
|
|
DEPS = amqp10_common credentials_obfuscation gun
|
|
TEST_DEPS = rabbit rabbitmq_ct_helpers
|
|
LOCAL_DEPS = ssl inets crypto public_key
|
|
|
|
DEP_EARLY_PLUGINS = rabbit_common/mk/rabbitmq-early-plugin.mk
|
|
# We do not depend on rabbit therefore can't run the broker;
|
|
# however we can run a test broker in the test suites.
|
|
DEP_PLUGINS = rabbit_common/mk/rabbitmq-plugin.mk \
|
|
rabbit_common/mk/rabbitmq-hexpm.mk
|
|
|
|
DEP_PLUGINS += elvis_mk
|
|
dep_elvis_mk = git https://github.com/inaka/elvis.mk.git master
|
|
|
|
include ../../rabbitmq-components.mk
|
|
include ../../erlang.mk
|
|
|
|
HEX_TARBALL_FILES += ../../rabbitmq-components.mk \
|
|
git-revisions.txt
|
|
|
|
# --------------------------------------------------------------------
|
|
# ActiveMQ for the testsuite.
|
|
# --------------------------------------------------------------------
|
|
|
|
ACTIVEMQ_VERSION := 6.1.7
|
|
ACTIVEMQ_URL := 'https://archive.apache.org/dist/activemq/$(ACTIVEMQ_VERSION)/apache-activemq-$(ACTIVEMQ_VERSION)-bin.tar.gz'
|
|
|
|
ACTIVEMQ := $(abspath test/system_SUITE_data/apache-activemq-$(ACTIVEMQ_VERSION)/bin/activemq)
|
|
export ACTIVEMQ
|
|
|
|
$(ACTIVEMQ): \
|
|
test/system_SUITE_data/apache-activemq-$(ACTIVEMQ_VERSION)-bin.tar.gz
|
|
$(gen_verbose) cd "$(dir $<)" && tar zxf "$(notdir $<)"
|
|
|
|
test/system_SUITE_data/apache-activemq-$(ACTIVEMQ_VERSION)-bin.tar.gz:
|
|
$(gen_verbose) $(call core_http_get,$@,$(ACTIVEMQ_URL))
|
|
|
|
tests:: $(ACTIVEMQ)
|
|
|
|
ct ct-system: $(ACTIVEMQ)
|