forked from spilgames/erl-cache
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrebar.config
32 lines (22 loc) · 868 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
30
31
32
%%% -*- mode: erlang -*-
{cover_enabled,true}.
{cover_export_enabled,true}.
{cover_print_enabled,true}.
{deps,[
{lager,[],{git,"https://github.com/basho/lager.git",{tag,"2.0.3"}}},
{decorator_pt,[],{git,"git://github.com/spilgames/erl-decorator-pt.git",{tag,"1.0.2"}}},
{folsom, ".*", {git, "https://github.com/boundary/folsom.git", "master"}}
]}.
{deps_dir,"deps"}.
{edoc_opts,[{todo,true},{preprocess,true},{includes,[".","deps"]}]}.
{eunit_opts,[verbose,{report,{eunit_surefire,[{dir,"."}]}}]}.
{xref_checks,[undefined_function_calls]}.
{escript_incl_apps, [
basho_bench,
% Copied from basho_bench/rebar.config
lager, getopt, bear, folsom, ibrowse, riakc, riak_pb, mochiweb,
protobuffs, velvet, goldrush
]}.
{erl_opts, [debug_info,
{src_dirs, [src]},
{parse_transform, lager_transform}]}.