-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrebar.config
44 lines (39 loc) · 1.48 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
%% -*- mode: erlang -*-
{deps,
[
{emqx, {git_subdir, "https://github.com/emqx/emqx.git", {tag, "v5.4.0"}, "apps/emqx"}}
, {emqx_ctl, {git_subdir, "https://github.com/emqx/emqx.git", {tag, "v5.4.0"}, "apps/emqx_ctl"}}
, {emqx_utils, {git_subdir, "https://github.com/emqx/emqx.git", {tag, "v5.4.0"}, "apps/emqx_utils"}}
, {emqx_durable_storage, {git_subdir, "https://github.com/emqx/emqx.git", {tag, "v5.4.0"}, "apps/emqx_durable_storage"}}
, {emqx_resource, {git_subdir, "https://github.com/emqx/emqx.git", {tag, "v5.4.0"}, "apps/emqx_resource"}}
, {mongodb, {git, "https://github.com/emqx/mongodb-erlang", {tag, "v3.0.22"}}}
]}.
{plugins, [
{emqx_plugrel, {git, "https://github.com/jostar-y/emqx_plugrel.git", {branch, "master"}}}
]}.
{erl_opts, []}.
{relx, [{release, {emqx_plugin_mongodb, "1.0.0"},
[
emqx_plugin_mongodb
]}
, {include_src, false}
, {dev_mode, false}
, {include_erts, false}
]}.
{emqx_plugrel,
[{authors, ["Jostar"]}
, {builder,
[{name, ""}
, {contact, ""}
, {website, ""}
]}
, {repo, "https://github.com/jostar-y/emqx_plugin_mongodb"}
, {functionality, ["Demo"]}
, {compatibility,
[{emqx, "~> v5.4.0"}
]}
, {description, "EMQX mongodb plugin."}
]
}.
{xref_checks, [undefined_function_calls, undefined_functions, locals_not_used,
deprecated_function_calls, warnings_as_errors, deprecated_functions]}.