forked from basho/riak_core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
36 lines (26 loc) · 1.5 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
{minimum_otp_vsn, "22.0"}.
{erl_first_files, ["src/gen_nb_server.erl", "src/riak_core_gen_server.erl",
"src/riak_core_stat_xform"]}.
{cover_enabled, true}.
{erl_opts, [warnings_as_errors, debug_info]}.
{edoc_opts, [{preprocess, true}]}.
{eunit_opts, [verbose]}.
{xref_checks,[undefined_function_calls,undefined_functions,locals_not_used]}.
{plugins, [{eqc_rebar, {git, "https://github.com/Quviq/eqc-rebar", {branch, "master"}}}]}.
{deps, [
{poolboy, {git, "https://github.com/OpenRiak/poolboy.git", {branch, "openriak-3.2"}}},
{riak_sysmon, {git, "https://github.com/OpenRiak/riak_sysmon.git", {branch, "openriak-3.2"}}},
{clique, {git, "https://github.com/OpenRiak/clique.git", {branch, "openriak-3.2"}}},
{eleveldb, {git, "https://github.com/OpenRiak/eleveldb.git", {branch, "openriak-3.2"}}},
{riak_ensemble, {git, "https://github.com/OpenRiak/riak_ensemble", {branch, "openriak-3.2"}}},
{pbkdf2, {git, "https://github.com/OpenRiak/erlang-pbkdf2.git", {branch, "openriak-3.2"}}},
{cluster_info, {git, "https://github.com/OpenRiak/cluster_info.git", {branch, "openriak-3.2"}}},
{exometer_core, {git, "https://github.com/Feuerlabs/exometer_core.git", {tag, "1.6.1"}}},
{basho_stats, {git, "https://github.com/OpenRiak/basho_stats.git", {branch, "openriak-3.2"}}}
]}.
{dialyzer, [{plt_apps, all_deps}]}.
{profiles, [
{test, [{deps, [meck]}, {erl_opts, [nowarn_export_all]}]},
{eqc, [{deps, [meck]}, {erl_opts, [{d, 'EQC'}, nowarn_export_all]}]},
{gha, [{erl_opts, [{d, 'GITHUBEXCLUDE'}]}]}
]}.