forked from basho/riak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
31 lines (24 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
%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
{sub_dirs, ["rel", "apps/riak"]}.
{require_otp_vsn, "R16|17"}.
{cover_enabled, true}.
{recursive_cmds, [xref]}.
{lib_dirs, ["apps/riak"]}.
{erl_opts, [debug_info, fail_on_warning]}.
{eunit_opts, [verbose]}.
{erlydtl_opts, [
{compiler_options, [report, return, debug_info]}
]}.
{deps, [
{node_package, ".*", {git, "https://github.com/basho/node_package.git", {tag, "4.0.2"}}},
{lager_syslog, ".*", {git, "git://github.com/basho/lager_syslog.git", {tag, "3.0.3"}}},
{cluster_info, ".*", {git, "git://github.com/basho/cluster_info.git", {tag, "2.0.5"}}},
{riak_kv, ".*", {git, "git://github.com/basho/riak_kv.git", {tag, "riak_kv-2.9.0"}}},
{riak_control, ".*", {git, "git://github.com/basho/riak_control.git", {branch, "develop-2.9"}}},
{riaknostic, ".*", {git, "git://github.com/basho/riaknostic.git", {tag, "2.1.7"}}},
{riak_auth_mods, ".*", {git, "git://github.com/basho/riak_auth_mods.git", {tag, "2.1.0"}}},
{riak_repl, ".*", {git, "git://github.com/basho/riak_repl.git", {tag, "riak_kv-2.9.0p1"}}},
{yokozuna, ".*", {git, "git://github.com/Sentenai/yokozuna.git", {tag, "riak-2.9.0-sentenai"}}},
{rebar_lock_deps_plugin, ".*", {git, "https://github.com/basho/rebar_lock_deps_plugin.git", {tag, "3.1.0p1"}}}
]}.
{plugins, [rebar_lock_deps_plugin]}.