forked from phanimahesh/emq_plugin_elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
40 lines (35 loc) · 1015 Bytes
/
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
{minimum_otp_vsn, "19.0"}.
{erl_opts, [debug_info]}.
{deps, [
{esio, % MIT Licensed
{git, "https://github.com/fogfish/esio", {ref, "fafca4de83a2e477a38ad8714d502f967955889c"}}
},
{uuid, % LGPLv3 Licensed
{git, "https://github.com/avtobiff/erlang-uuid", {branch, master}}
},
{poolboy, "1.5.1"}
]}.
% Treat dependency conflicts as errors.
% Resolve manually.
{deps_error_on_conflict, true}.
% Make sure modules in .app match those found in code
{validate_app_modules, true}.
%%----------
% FIXME: Temporary stuff to generate sample conf from schema
% Should probably be put into a rebar3 profile if I can't find a better way
{project_plugins, [rebar3_cuttlefish]}.
{cuttlefish, [{schema_discovery, false}]}.
{relx, [
{release,
{emq_plugin_elasticsearch, "0.1.0"},
[emq_plugin_elasticsearch]
},
{dev_mode, true},
{include_erts, false},
{overlay, [
{template,
"priv/emq_plugin_elasticsearch.schema",
"share/schema/emq_plugin_elasticsearch.schema"
}
]}
]}.