forked from basho/riak_test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
31 lines (20 loc) · 1.2 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
{minimum_otp_vsn, "22"}.
{cover_enabled, true}.
{edoc_opts, [{preprocess, true}]}.
{erl_opts, [{src_dirs, [src, intercepts, perf]}]}.
{erl_first_files, ["src/rt_intercept_pt.erl"]}.
{eunit_opts, [verbose]}.
{deps, [
{getopt, {git, "https://github.com/OpenRiak/getopt", {branch, "openriak-3.2"}}},
{mapred_verify, {git, "https://github.com/OpenRiak/mapred_verify", {branch, "nhse-develop-3.0"}}},
{riakhttpc, {git, "https://github.com/OpenRiak/riak-erlang-http-client", {branch, "openriak-3.2"}}},
{kvc, "1.7.0", {git, "https://github.com/etrepum/kvc", {tag, "v1.7.0"}}},
{kv_index_tictactree, ".*", {git, "https://github.com/OpenRiak/kv_index_tictactree.git", {branch, "openriak-3.2"}}}
]}.
{escript_incl_apps, [getopt, riakhttpc, riakc, ibrowse, mochiweb, kvc, kv_index_tictactree]}.
{escript_emu_args, "%%! -escript main riak_test_escript +K true +P 10000 -env ERL_MAX_PORTS 10000\n"}.
{post_hooks, [{"(linux|darwin|solaris|freebsd|netbsd|openbsd)",
escriptize,
"cp \"$REBAR_BUILD_DIR/bin/riak_test\" ./riak_test"}]}.
{profiles, [{test, [{extra_src_dirs, ["tests", "perf"]}]}]}.
{xref_checks,[undefined_function_calls,undefined_functions]}.