forked from vernemq/vernemq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
137 lines (123 loc) · 5.37 KB
/
rebar.config
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
%%-*- mode: erlang -*-
{minimum_otp_vsn, "21.2"}.
{erl_opts, [debug_info, fail_on_warning,
{platform_define, "20|21|22|23|24", nowarn_gen_fsm},
{platform_define, "^(R|1|20)", fun_stacktrace}]}.
{edoc_opts, [{preprocess, true}]}.
{project_plugins, [
{rebar3_cuttlefish, {git, "git://github.com/vernemq/rebar3_cuttlefish",
{branch, "master"}}}]}.
{dialyzer, [{exclude_mods, [vmq_plugin]},
{plt_location, "plts"},
{base_plt_location, "plts_base"}]}.
{deps, [
{recon, "2.5.1"},
{lager, "3.8.0"},
{stdout_formatter, "0.2.3"},
%% use specific cuttlefish commit until either 2.2.1 or 2.3.0 is relased.
{cuttlefish, {git, "git://github.com/Kyorai/cuttlefish.git", {tag, "v2.3.0"}}},
{vernemq_dev, {git, "git://github.com/vernemq/vernemq_dev.git", {branch, "master"}}},
{syslog, "1.1.0"},
{lager_syslog, {git, "git://github.com/basho/lager_syslog.git", {branch, "develop-3.0"}}},
%% remove once clique hex package 3.0.2 is released
{clique, {git, "git://github.com/vernemq/clique.git", {branch, "rel_0.3.6-verne"}}}
]}.
{overrides, [
%% overrides to get it compiling on OTP 21
{override, clique, [{erl_opts, [debug_info]}]}
]}.
{cover_enabled, true}.
{profiles,
[
{rpi32,
[{deps,
[
{eleveldb, {git, "git://github.com/vernemq/eleveldb.git", {branch, "rpi-32"}}}
]
},
%% Make sure the release generation can find the schema files is
%% it's looking in the default folder.
{pre_hooks, [{release, "ln -sf ../../rpi32/lib/eleveldb _build/default/lib/"}]}
]},
{all_tests,
[{erl_opts, [
{d, run_all_tests, true}
]}]
}]
}.
{cuttlefish,
[{schema_dir, "lib"},
{schema_discovery, false}]}.
{relx,
[{release, {vernemq, semver},
[
sasl,
inets,
xmerl,
vmq_server,
vernemq_dev,
{cuttlefish, load},
{vmq_plumtree, load},
{plumtree, load},
{vmq_generic_msg_store, load},
{vmq_passwd, load},
{vmq_acl, load},
{vmq_bridge, load},
{vmq_diversity, load},
{vmq_webhooks, load},
{vmq_swc, load},
{vmq_pulse, load},
{recon, load},
{syslog, load},
{lager_syslog, load},
{runtime_tools, load},
{tools, load},
{mcd, load},
{vmq_mqtt5_demo_plugin, load}
]},
% the vars.generated is created by the Makefile
{overlay_vars, "vars.generated"},
{dev_mode, false},
{include_erts, true},
{include_src, false},
% we're using the runner from files/runner (ex. node_package)
{extended_start_script, false},
{overlay, [
{mkdir, "data/broker"},
{mkdir, "data/msgstore"},
{mkdir, "log/sasl"},
{template, "files/vmq-admin", "bin/vmq-admin"},
{template, "files/runner", "bin/vernemq"},
{template, "files/env.sh", "lib/env.sh"},
{copy, "3rd-party-licenses.txt", "share/3rd-party-licenses.txt"},
{copy, "files/nodetool", "erts-{{erts_vsn}}/bin/nodetool"},
{copy, "_build/default/bin/cuttlefish", "erts-{{erts_vsn}}/bin/cuttlefish"},
{copy, "apps/vmq_acl/priv/default.acl",
"etc/vmq.acl"},
{copy, "apps/vmq_passwd/priv/vmq_passwd",
"bin/vmq-passwd"},
%% Cuttlefish Schema Files have a priority order.
%% Anything in a file prefixed with 00- will override
%% anything in a file with a higher numbered prefix.
%%
%% Please only use 0[0-9]-*.schema for development purposes
{template, "apps/vmq_server/priv/vmq_server.schema","share/schema/10-vmq_server.schema"},
{template, "apps/vmq_generic_msg_store/priv/vmq_generic_msg_store.schema","share/schema/11-vmq_generic_msg_store.schema"},
{template, "apps/vmq_plugin/priv/vmq_plugin.schema","share/schema/12-vmq_plugin.schema"},
{template, "apps/vmq_acl/priv/vmq_acl.schema", "share/schema/13-vmq_acl.schema"},
{template, "apps/vmq_passwd/priv/vmq_passwd.schema", "share/schema/14-vmq_passwd.schema"},
{template, "apps/vmq_diversity/priv/vmq_diversity.schema", "share/schema/15-vmq_diversity.schema"},
{template, "apps/vmq_diversity/priv/vmq_bcrypt.schema", "share/schema/16-vmq_bcrypt.schema"},
{copy, "apps/vmq_diversity/priv/init.lua", "share/lua/init.lua"},
{copy, "apps/vmq_diversity/priv/auth", "share/lua/"},
{template, "apps/vmq_webhooks/priv/vmq_webhooks.schema", "share/schema/17-vmq_webhooks.schema"},
{template, "apps/vmq_bridge/priv/vmq_bridge.schema", "share/schema/18-vmq_bridge.schema"},
{template, "apps/vmq_swc/priv/vmq_swc.schema", "share/schema/19-vmq_swc.schema"},
{template, "apps/vmq_pulse/priv/vmq_pulse.schema", "share/schema/20-vmq_pulse.schema"},
{template, "files/vmq.schema", "share/schema/30-vmq.schema"},
{template, "_build/default/lib/cuttlefish/priv/erlang_vm.schema", "share/schema/31-erlang_vm.schema"},
{template, "_build/default/lib/riak_sysmon/priv/riak_sysmon.schema", "share/schema/32-riak_sysmon.schema"},
{template, "_build/default/lib/eleveldb/priv/eleveldb.schema", "share/schema/33-eleveldb.schema"},
{mkdir, "lib/erlio-patches"}
]}
]}.