-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrebar.config
More file actions
25 lines (21 loc) · 836 Bytes
/
rebar.config
File metadata and controls
25 lines (21 loc) · 836 Bytes
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
{require_otp_vsn, "17"}.
{erl_opts,
[fail_on_warning,
{parse_transform, lager_transform}]}.
{deps_dir, "deps"}.
{deps, [
{dobby_clib, ".*", {git, "https://github.com/shivarammysore/dobby_clib.git", {branch,"master"}}},
{erl_sshd, ".*", {git, "https://github.com/marcsugiyama/erl_sshd.git", {branch,"master"}}},
{'iso8601', ".*", {git, "https://github.com/seansawyer/erlang_iso8601.git", {tag, "1.1.1"}}},
{lager, ".*", {git, "https://github.com/basho/lager.git", {tag,"2.1.1"}}},
{jiffy, ".*", {git, "https://github.com/davisp/jiffy.git", {tag, "0.13.3"}}},
{meck, ".*", {git, "https://github.com/eproxus/meck.git", {tag, "0.8.2"}}}
]
}.
{sub_dirs,
["rel"]
}.
{cover_enabled, true}.
{cover_print_enabled, true}.
{eunit_opts, [verbose]}.
{eunit_compile_opts, [{i, "../"}]}.