-
Notifications
You must be signed in to change notification settings - Fork 538
/
rebar.config
28 lines (23 loc) · 1.35 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
%% -*- 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, [
{node_package, ".*", {git, "https://github.com/basho/node_package.git", {tag, "3.1.1"}}},
{lager_syslog, ".*", {git, "git://github.com/basho/lager_syslog.git", {tag, "3.0.2"}}},
{cluster_info, ".*", {git, "git://github.com/basho/cluster_info.git", {tag, "2.0.3"}}},
{riak_kv, ".*", {git, "git://github.com/basho/riak_kv.git", {tag, "2.1.6"}}},
{riak_search, ".*", {git, "git://github.com/basho/riak_search.git", {tag, "2.1.5"}}},
{riak_control, ".*", {git, "git://github.com/basho/riak_control.git", {tag, "2.1.5"}}},
{riaknostic, ".*", {git, "git://github.com/basho/riaknostic.git", {tag, "2.1.4"}}},
{yokozuna, ".*", {git, "git://github.com/basho/yokozuna.git", {tag, "2.1.7"}}},
{riak_auth_mods, ".*", {git, "git://github.com/basho/riak_auth_mods.git", {tag, "2.1.0"}}},
{rebar_lock_deps_plugin, ".*", {git, "https://github.com/basho/rebar_lock_deps_plugin.git", {tag, "3.1.0p1"}}}
]}.
{plugins, [rebar_lock_deps_plugin]}.