forked from esl/MongooseIM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
46 lines (37 loc) · 2.22 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
40
41
42
43
44
45
46
{erl_opts, [debug_info,
{i, ["include"]}]}.
{require_otp_vsn, "R?1[567]"}.
{sub_dirs, [
"apps/ejabberd",
"apps/mysql",
"apps/pgsql",
"rel", "dev"]}.
{deps,
[
{base16, ".*", {git, "git://github.com/goj/base16.git", "1e9dd28bdbcfb"}},
{cuesport, ".*", {git, "git://github.com/goj/cuesport.git", "3b16d99"}},
{redo, ".*", {git, "git://github.com/JacobVorreuter/redo.git", "7c7eaef"}},
{exml, "2.1.5", {git, "git://github.com/esl/exml.git", "2.1.5"}},
{lager, "2.0.3", {git, "git://github.com/basho/lager.git", "2.0.3"}},
{cowboy, ".*", {git, "git://github.com/ninenines/cowboy.git", "1.0.1"}},
{folsom, ".*", {git, "git://github.com/boundary/folsom.git", "0.8.2"}},
{exometer, ".*", {git, "git://github.com/Feuerlabs/exometer.git", "1.1"}},
{mochijson2, ".*", {git, "git://github.com/bjnortier/mochijson2.git", {branch, "master"}}},
{alarms, ".*", {git, "git://github.com/chrzaszcz/alarms.git", {branch, "master"}}},
{fusco, ".*", {git, "git://github.com/esl/fusco.git", {branch, "master"}}},
{idna, ".*", {git, "git://github.com/benoitc/erlang-idna.git", {tag, "1.0.1"}}},
{seestar, ".*", {git, "git://github.com/iamaleksey/seestar.git", "83e8099b617fffe5af86d4c91d84ce3608accd25"}},
{p1_utils, ".*", {git, "git://github.com/processone/p1_utils", "940f42ddfcdc0b7b2abf4d9ee292605a93699543"}},
{p1_cache_tab, ".*", {git, "git://github.com/processone/cache_tab", "7b89d6a"}},
{p1_stringprep, ".*", {git, "git://github.com/processone/stringprep.git", "9e9e0f8dbe6a70ef36e1d4436b458ca5a77fbcfb"}},
{proper, ".*", {git, "git://github.com/manopapad/proper.git", {tag, "v1.1"}}},
{meck, ".*", {git, "git://github.com/eproxus/meck.git", {tag, "0.8.2"}}},
{pa, ".*", {git, "git://github.com/lavrin/pa.git", "c616d3f9"}},
{ecoveralls, ".*", {git, "git://github.com/nifoc/ecoveralls.git", "40fa0d2f2057fff29e964f94fccf6ef2f13d34d2"}},
{mustache, ".*", {git, "git://github.com/mojombo/mustache.erl.git", "d0246fe143058b6404f66cf99fece3ff6e87b7ed"}},
{recon, "2.2.1", {git, "git://github.com/ferd/recon.git", {tag, "2.2.1"}}}
]}.
{ct_extra_params, "-pa apps/ejabberd/ebin "
"-pa apps/stringprep/ebin "
"-sasl sasl_error_logger false"}.
{recursive_cmds, [ct, eunit, clean]}.