forked from esl/escalus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
36 lines (32 loc) · 968 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
{erl_opts, [debug_info,
warn_missing_spec,
{i, [".", "include"]}
]}.
{require_min_otp_vsn, "21"}.
{deps, [
{exml, "3.0.5", {pkg, hexml}},
{base16, "2.0.0"},
{fusco, "0.1.1"},
{meck, "0.9.2"},
{bbmustache, "1.12.1"},
{uuid, "2.0.2", {pkg, uuid_erl}},
{gun, "1.3.3"},
{worker_pool, "4.0.3"},
{fast_tls, "1.1.12"},
{fast_scram, "0.4.1"}
]}.
%% To override the plugin as installed by worker_pool
{plugins,
[{rebar3_codecov, {git, "https://github.com/esl/rebar3_codecov.git", {ref, "6bd31cc"}}}]}.
{relx, [{release, {escalus, "0.0.1"},
[escalus]},
{dev_mode, true},
{sys_config, "./sys.config"},
{include_erts, false}
]}.
{eunit_compile_opts, [{d,'EUNIT_TEST',true}]}.
{ct_opts, [{config, "test/test.config"}]}.
{dist_node, [
{setcookie, 'ejabberd'},
{sname, 'rebar3ct'}
]}.