forked from OpenRiak/riak-erlang-http-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
30 lines (24 loc) · 870 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
{minimum_otp_vsn, "22.3"}.
{erl_opts, []}.
{deps,
[
{ibrowse, {git, "https://github.com/OpenRiak/ibrowse.git", {branch, "openriak-3.2"}}},
{webmachine, {git, "https://github.com/OpenRiak/webmachine.git", {branch, "openriak-3.2"}}},
{mochiweb, {git, "https://github.com/OpenRiak/mochiweb.git", {branch, "openriak-3.2"}}},
{riakc, {git, "https://github.com/OpenRiak/riak-erlang-client", {branch, "openriak-3.2"}}}
]}.
{edoc_opts,
[
%% handle macro expansion in edoc
{preprocess, true},
{include, "./deps/riakc/include/riakc.hrl"}
]}.
%% Misc =======================================================================
{clean_files, ["doc/*.html", "doc/*.png", "doc/edoc-info", "doc/*.css"]}.
{xref_checks, [
undefined_function_calls,
undefined_functions,
deprecated_function_calls,
deprecated_functions,
locals_not_used
]}.