forked from vernemq/vernemq
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrebar.config
More file actions
146 lines (129 loc) · 5.61 KB
/
rebar.config
File metadata and controls
146 lines (129 loc) · 5.61 KB
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
138
139
140
141
142
143
144
145
146
%%-*- mode: erlang -*-
{minimum_otp_vsn, "18.0"}.
{erl_opts, [debug_info, fail_on_warning,
{platform_define, "20", otp20}]}.
{project_plugins, [
{rebar3_cuttlefish, {git, "git://github.com/larshesel/rebar3_cuttlefish",
{branch, "use-otp20-compatibly-cuttlefish"}}}]}.
{dialyzer, [{exclude_mods, [vmq_plugin]}]}.
{deps, [
{recon, "2.3.2"},
{lager, "3.2.1"},
{cuttlefish, {git,"git://github.com/kyorai/cuttlefish.git", {branch, "develop"}}},
{eper, "0.94.0"},
{vernemq_dev, {git, "git://github.com/larshesel/vernemq_dev.git", {branch, "mqtt5-preview"}}},
{node_package, {git,"git://github.com/erlio/node_package.git", {branch, "rebar3x-support"}}},
{lager_syslog, {git, "git://github.com/basho/lager_syslog.git", {tag, "3.0.1"}}},
%% remove once clique hex package 3.0.2 is released
{clique, {git, "git://github.com/basho/clique.git", {tag, "0.3.5"}}}
]}.
{overrides, [{override, syslog,
[{so_name, "syslog_drv"},
{port_sources, ["c_src/*.c"]},
{pre_hooks,
[{compile, "cp ../../../../files/syslog.mk c_src/Makefile"},
{"(linux|darwin|solaris)", compile, "make -C c_src"},
{"(freebsd)", compile, "gmake -C c_src"}]},
{post_hooks,
[{"(linux|darwin|solaris)", clean, "make -C c_src clean"},
{"(freebsd)", clean, "gmake -C c_src clean"}]}
]},
{override, bcrypt,
[
%% Pegging the pc (port-compiler) to a known working
%% version as newer (v1.9.1) doesn't seem to work. See
%% https://github.com/blt/port_compiler/issues/48.
{plugins, [{pc, "1.8.0"}]}
]}
]}.
{cover_enabled, true}.
{profiles,
[{rpi32,
[{deps,
[
{mzmetrics, {git, "git://github.com/erlio/mzmetrics.git", {branch, "rpi-32"}}},
{eleveldb, {git, "git://github.com/erlio/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/"},
{release, "ln -sf ../../rpi32/lib/mzmetrics _build/default/lib/"}]}
]},
{all_tests,
[{erl_opts, [
{d, run_all_tests, true}
]}]
}]
}.
{cuttlefish,
[{schema_dir, "lib"},
{schema_discovery, false}]}.
{relx,
[{release, {vernemq, "1.5.0"},
[
sasl,
inets,
xmerl,
vmq_server,
vernemq_dev,
{cuttlefish, load},
{vmq_passwd, load},
{vmq_acl, load},
{vmq_bridge, load},
{vmq_diversity, load},
{vmq_webhooks, load},
{vmq_plumtree, load},
{recon, load},
{eper, load},
{syslog, load},
{lager_syslog, load},
{runtime_tools, load},
{tools, load},
{mcd, load},
{vmq_allow_all_v5, load},
{vmq_mqtt5_demo_plugin, load}
]},
{dev_mode, false},
{include_erts, true},
{include_src, false},
{generate_start_script, false},
{overlay, [
{mkdir, "data/broker"},
{mkdir, "data/msgstore"},
{mkdir, "log/sasl"},
{template, "_build/default/lib/node_package/priv/base/runner",
"bin/vernemq"},
{template, "_build/default/lib/node_package/priv/base/nodetool",
"erts-{{erts_vsn}}/bin/nodetool"},
{template, "_build/default/lib/node_package/priv/base/env.sh",
"lib/env.sh"},
{template, "_build/default/lib/node_package/priv/base/app_epath.sh",
"lib/app_epath.sh"},
{template, "files/vmq-admin", "bin/vmq-admin"},
{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_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"},
{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/16-vmq_webhooks.schema"},
{template, "apps/vmq_bridge/priv/vmq_bridge.schema", "share/schema/17-vmq_bridge.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"}
]}
]}.