-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathrebar.config
More file actions
45 lines (38 loc) · 1.12 KB
/
rebar.config
File metadata and controls
45 lines (38 loc) · 1.12 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
{erl_opts, [debug_info,
warn_missing_spec,
{i, [".", "include"]}
]}.
{require_min_otp_vsn, "26"}.
{deps, [
{exml, "~> 4.1", {pkg, hexml}},
{meck, "~> 1.0"},
{bbmustache, "~> 1.12"},
{uuid, "~> 2.0", {pkg, uuid_erl}},
{gun, "~> 2.2"},
{worker_pool, "~> 6.4"},
{fast_scram, "~> 0.7"}
]}.
{dialyzer, [
{warnings, [unknown]},
{plt_extra_apps, [common_test, exml, uuid, worker_pool, fast_scram]}]}.
{hex, [{doc, edoc}]}.
%% To override the plugin as installed by worker_pool
{project_plugins,
[rebar3_hex, {rebar3_codecov, "0.7.0"}]}.
{overrides, [
{override, gun, [{deps, [{cowlib, "~> 2.15"}]}]},
{override, worker_pool, [{minimum_otp_vsn, "26"}]}
]}.
{relx, [{release, {escalus, git},
[escalus]},
{dev_mode, true},
{sys_config, "./sys.config"},
{include_erts, false}
]}.
{edoc_opts, [{preprocess, true}]}.
{eunit_compile_opts, [{d,'EUNIT_TEST',true}]}.
{ct_opts, [{config, "test/test.config"}]}.
{dist_node, [
{setcookie, 'ejabberd'},
{sname, 'rebar3ct'}
]}.