-
Notifications
You must be signed in to change notification settings - Fork 76
/
rebar.config
29 lines (25 loc) · 938 Bytes
/
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
{cover_enabled, true}.
{erl_opts, [warnings_as_errors,
debug_info,
{platform_define, "^[0-9]+", namespaced_types},
{parse_transform, lager_transform}]}.
{eunit_opts, [verbose]}.
{xref_checks, []}.
{xref_queries, [{"(XC - UC) || (XU - X - B)", []}]}.
{deps,
[
{kvc, ".*", {git, "https://github.com/basho/kvc.git", {tag, "v1.5.0"}}},
{riak_kv, ".*", {git, "https://github.com/basho/riak_kv.git", {tag, "2.1.8"}}},
{ibrowse, "4.*", {git, "https://github.com/basho/ibrowse.git", {tag, "v4.3"}}},
{fuse, "2.1.0", {git, "https://github.com/basho/fuse.git", {tag, "v2.1.0"}}},
%% Needed for testing ONLY
{riakc, ".*", {git, "https://github.com/basho/riak-erlang-client", {tag, "2.5.2"}}}
]}.
{pre_hooks, [{compile, "./tools/grab-solr.sh"}]}.
{plugin_dir, ".rebar_plugins"}.
{plugins, [rebar_test_plugin]}.
{riak_test,
[
{test_paths, ["riak_test"]},
{test_output, "riak_test/ebin"}
]}.