forked from basho/riak_test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
33 lines (30 loc) · 1.94 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
{require_otp_vsn, "R13B04|R14|R15|R16"}.
{cover_enabled, true}.
{edoc_opts, [{preprocess, true}]}.
%%{edoc_opts, [{doclet, edown_doclet}, {pretty_printer, erl_pp}]}.
%%{edoc_opts, [{doclet, my_layout}, {pretty_printer, erl_pp}]}.
%%{edoc_opts, [{layout, my_layout}, {file_suffix, ".xml"}, {pretty_printer, erl_pp}]}.
{erl_opts, [{src_dirs, [src, intercepts, perf]},
warnings_as_errors, {parse_transform, lager_transform}]}.
{erl_first_files, ["src/rt_intercept_pt.erl"]}.
{eunit_opts, [verbose]}.
{deps, [
{lager, ".*", {git, "https://github.com/basho/lager", {tag, "3.2.4"}}},
{getopt, ".*", {git, "https://github.com/basho/getopt.git", {tag, "v0.8.2"}}},
{meck, ".*", {git, "https://github.com/basho/meck.git", {tag, "0.8.2"}}},
{mapred_verify, ".*", {git, "https://github.com/basho/mapred_verify", {tag, "0.1"}}},
{riakc, ".*", {git, "https://github.com/basho/riak-erlang-client", {branch, "develop"}}},
{riakhttpc, ".*", {git, "https://github.com/basho/riak-erlang-http-client", {branch, "develop"}}},
{kvc, ".*", {git, "https://github.com/basho/kvc.git", {tag, "v1.5.0"}}},
{druuid, ".*", {git, "https://github.com/basho/druuid.git", {tag, "0.2"}}},
{tdiff, ".*", {git, "https://github.com/basho/tdiff", {tag, "0.1"}}},
{rebar_lock_deps_plugin, ".*", {git, "https://github.com/basho/rebar_lock_deps_plugin.git", {tag, "3.1.0p1"}}}
]}.
{escript_incl_apps, [goldrush, lager, getopt, riakhttpc, riakc, ibrowse, mochiweb, kvc, tdiff]}.
{escript_emu_args, "%%! -escript main riak_test_escript +K true +P 10000 -env ERL_MAX_PORTS 10000\n"}.
{plugin_dir, "src"}.
{plugins, [rebar_riak_test_plugin, rebar_lock_deps_plugin]}.
{riak_test, [
{test_paths, ["tests", "perf"]},
{test_output, "ebin"}
]}.