-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrebar.config
46 lines (41 loc) · 1.37 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
%%% -*- erlang -*-
%%% vim: set ts=4 sts=4 sw=4 et:
{erl_opts, [
{parse_transform, lager_transform},
warn_unused_vars,
warn_export_all,
warn_shadow_vars,
warn_unused_import,
warn_unused_function,
warn_bif_clash,
warn_unused_record,
warn_deprecated_function,
warn_obsolete_guard,
strict_validation,
warn_export_vars,
warn_exported_vars
]}.
{deps_dir, "deps"}.
{deps, [
% let it always be the first
{lager, "2.0.1",
{git, "git://github.com/basho/lager.git", {tag, "2.0.1"}}},
{amqp_client,"2.6.1",
{git, "git://github.com/jbrisbin/amqp_client.git", {tag,"rabbitmq_2.6.1"}}},
{rabbit_common,"2.6.1",
{git,"git://github.com/jbrisbin/rabbit_common.git", {tag,"rabbitmq_2.6.1"}}},
{dht_ring, "1.0.*",
{git, "git@github.com:EchoTeam/dht_ring", {branch, "master"}}},
{corman,"1.0.*",
{git,"git@github.com:EchoTeam/corman.git", {branch, "master"}}},
{echo_async,"1.0.*",
{git,"git@github.com:EchoTeam/echo_async.git", {branch, "master"}}},
{utils,"0.1.*",
{git,"git@github.com:EchoTeam/utils.git", {branch, "master"}}},
{meck, "0.*",
{git, "git://github.com/eproxus/meck", {branch, "master"}}}
]}.
{eunit_compile_opts, [export_all]}.
{eunit_opts, [verbose, {report,{eunit_surefire,[{dir,"."}]}}]}.
{cover_enabled, true}.
{cover_export_enabled, true}.