forked from OpenACD/OpenACD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
39 lines (34 loc) · 1.45 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
37
38
39
{erl_opts, [{src_dirs, ["contrib/misc/src"]}]}.
{sub_dirs, ["rel"]}.
{lib_dirs, ["include_apps"]}.
{deps, [
{protobuffs, "0.6.0", {git, "http://github.com/lordnull/erlang_protobuffs.git", "master"}},
{errd, "0.1", {git, "https://github.com/Vagabond/errd.git", {tag, "8562fce3778318b0edda"}}},
{gen_smtp, "0.1", {git, "https://github.com/Vagabond/gen_smtp.git", {tag,
"0558786233ca152064770d3d6848e7ae3745f8a1"}}},
{gen_leader, "1.0", {git, "https://github.com/Vagabond/gen_leader_revival.git", {tag, "6e563e111d7803c9e82a"}}},
% {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, [
{compile, "./hooks.sh pre_compile"},
{'get-deps', "./hooks.sh pre_get-deps"},
{clean, "./hooks.sh pre_clean"}
]}.
{post_hooks, [
{compile, "./hooks.sh post_compile"},
{'get-deps', "./hooks.sh post_get-deps"},
{clean, "./hooks.sh post_clean"}
]}.
{cover_enabled, true}.
{eunit_opts, [verbose]}.