forked from basho/riak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
30 lines (24 loc) · 1.47 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
%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
{sub_dirs, ["rel", "apps/riak"]}.
{require_otp_vsn, "R16|17"}.
{cover_enabled, true}.
{lib_dirs, ["apps/riak"]}.
{erl_opts, [debug_info, fail_on_warning]}.
{eunit_opts, [verbose]}.
{erlydtl_opts, [
{compiler_options, [report, return, debug_info]}
]}.
{deps, [
{rebar_lock_deps_plugin, ".*", {git, "git://github.com/seth/rebar_lock_deps_plugin.git", {branch, "master"}}},
{node_package, ".*", {git, "git://github.com/basho/node_package.git", {branch, "develop"}}},
{lager_syslog, "2.0.3", {git, "git://github.com/basho/lager_syslog.git", {tag, "2.0.3"}}},
{cluster_info, ".*", {git, "git://github.com/basho/cluster_info.git", {branch, "develop"}}},
{riak_kv, ".*", {git, "git://github.com/basho/riak_kv.git", {branch, "develop"}}},
{riak_search, ".*", {git, "git://github.com/basho/riak_search.git", {branch, "develop"}}},
{riak_control, ".*", {git, "git://github.com/basho/riak_control.git", {branch, "develop"}}},
{riaknostic, ".*", {git, "git://github.com/basho/riaknostic.git", {branch, "develop"}}},
{yokozuna, ".*", {git, "git://github.com/basho/yokozuna.git", {branch, "develop"}}},
{riak_auth_mods, ".*", {git, "git://github.com/basho/riak_auth_mods.git", {branch, "develop"}}},
{meck, "0.8.2", {git, "git://github.com/basho/meck.git", {tag, "0.8.2"}}}
]}.
{plugins, [rebar_lock_deps_plugin]}.