-
Notifications
You must be signed in to change notification settings - Fork 51
/
rebar.config
36 lines (31 loc) · 1.41 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
26
27
28
29
30
31
32
33
34
35
36
{erl_opts, [{src_dirs, ["src", "contrib/misc/src"]}]}.
{sub_dirs, ["include_apps/oacd_freeswitch", "include_apps/oacd_dummy", "rel"]}.
{deps, [
{meck, "0.7.2", {git, "git://github.com/eproxus/meck.git", "master"}},
{protobuffs, "0.6.0", {git, "http://github.com/jvliwanag/erlang_protobuffs.git", "master"}},
{errd, "0.1", {git, "https://github.com/dannaaduna/errd.git", "master"}},
{gen_smtp, "0.1", {git, "https://github.com/Vagabond/gen_smtp.git", {tag,
"0558786233ca152064770d3d6848e7ae3745f8a1"}}},
{gen_leader, "1.0", {git, "https://github.com/dannaaduna/gen_leader_revival.git", "master"}},
% {mochiweb, "1.3", {git, "http://github.com/mochi/mochiweb.git", {tag, "9396655c6f253863b6ce"}}},
{mochiweb, "2.3.0", {git, "http://github.com/mochi/mochiweb.git", {tag, "v2.3.0"}}},
{gen_server_mock, "0.0.5", {git, "http://github.com/lordnull/gen_server_mock.git", {branch, "master"}}},
{iconv, "1.0.2", {git, "https://github.com/OpenACD/erlang-iconv.git", {branch, "R15B"}}},
{netstring, "1", {git, "https://github.com/lordnull/erlnetstr.git", {branch, "master"}}}%,
%oacd_freeswitch,
%oacd_dummy
]}.
{edoc_opts, [
{def, {web, "<b>Web Api </b>"}},
{def, {agent_api, "<b>Agent Api</b>"}},
{def, {version, "2.0.0"}}
]}.
{pre_hooks, [
{'get-deps', "./hooks.sh pre_get-deps"},
{'compile', "./hooks.sh pre_compile"}
]}.
{post_hooks, [
{'get-deps', "./hooks.sh post_get-deps"}
]}.
{cover_enabled, true}.
{eunit_opts, [verbose]}.