-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
30 lines (26 loc) · 851 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
{erl_opts, [debug_info]}.
{deps, [
{mochiweb, "", {git, "[email protected]:mochi/mochiweb.git", {branch, master}}}
]}.
{plugins, [{rebar_raw_resource,
{git, "https://github.com/basho/rebar_raw_resource.git", {branch, master}}},
{rebar_covertool, {git, "https://github.com/idubrov/covertool.git", {branch, master}}}
]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{eunit_tests, [{dir, "test/eunit/src"}]}.
{profiles, [
{test, [
{deps, [
{meck, "", {git, "https://github.com/eproxus/meck.git", {branch, master}}},
{covertool, "", {git, "https://github.com/idubrov/covertool.git", {branch, master}}}
]},
{erl_opts, [debug_info]}
]}
]}.
{relx, [
{release, {"exercise", "0.0.1"}, [exercise]},
{dev_mode, false},
{include_erts, true},
{extended_start_script, true}
]}.