forked from esl/escalus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
27 lines (25 loc) · 975 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
{erl_opts, [debug_info,
warn_missing_spec,
{i, [".", "include"]}
]}.
{require_otp_vsn, "^1[789]"}.
{deps, [
{exml, ".*", {git, "git://github.com/esl/exml.git", "2.4.1"}},
{base16, ".*", {git, "git://github.com/goj/base16.git", "ec420aa"}},
{fusco, ".*", {git, "git://github.com/esl/fusco.git", "0a428471"}},
{wsecli, ".*", {git, "git://github.com/esl/wsecli.git", "a89054c"}},
{meck, ".*", {git, "git://github.com/eproxus/meck.git", {tag, "0.8.2"}}},
{mustache, ".*", {git, "git://github.com/mojombo/mustache.erl.git", "d0246fe"}}
]}.
{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'}
]}.