forked from esl/escalus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
25 lines (23 loc) · 1.11 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
{erl_opts, [debug_info,
warn_missing_spec,
{i, [".", "include"]},
{platform_define, "^[0-9]+", namespaced_types},
{platform_define, "R15", no_binary_to_integer},
{platform_define, "R15", no_types_with_arities},
{platform_define, "R15", no_crypto_hmac}]}.
{require_otp_vsn, "^(R1[56]|17|18)"}.
{deps, [
{exml, "2.2.*", {git, "git://github.com/esl/exml.git", "2547164950b65a86b79a5a5669821cff9bde17a7"}},
{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", "f1c3facf82e4cd310decb036ed557b7679c0c7e0"}},
{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}]}.