forked from basho/yokozuna
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rebar.config
40 lines (32 loc) · 1.06 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
%% -*- erlang -*-
{minimum_otp_vsn, "20.0"}.
{cover_enabled, true}.
{erl_opts, [warnings_as_errors,
debug_info,
{parse_transform, lager_transform}]}.
{eunit_opts, [verbose]}.
{xref_checks, []}.
{xref_queries, [{"(XC - UC) || (XU - X - B)", []}]}.
{deps,
[
{riak_kv, ".*", {git, "git://github.com/basho/riak_kv.git", {branch, "develop-3.0"}}},
{kvc, ".*", {git, "git://github.com/etrepum/kvc.git", {tag, "v1.5.0"}}},
{ibrowse, {git, "git://github.com/cmullaparthi/ibrowse.git", {tag, "v4.4.0"}}},
{fuse, "2.1.0", {git, "https://github.com/jlouis/fuse.git", {tag, "v2.1.0"}}},
{gen_fsm_compat, ".*", {git, "https://gitlab.com/Project-FiFo/gen_fsm_compat"}},
%% it's here becase of compile-riak-test
{riakc, ".*", {git, "git://github.com/basho/riak-erlang-client", {branch, "develop-3.0"}}}
]}.
{pre_hooks, [{compile, "./tools/grab-solr.sh"}]}.
{profiles,
[
{test, [
{deps,
[
meck
]
},
{erl_opts, [nowarn_export_all]}
]
}
]}.