forked from fabiankrol/ddb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
31 lines (22 loc) · 930 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
%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ts=4 sw=4 ft=erlang et
{lib_dirs, ["deps"]}.
{deps, [
{lager, ".*", {git, "git://github.com/basho/lager.git", {branch, "master"}}},
{jsx, ".*", {git, "git://github.com/talentdeficit/jsx.git", {branch, "master"}}},
{ibrowse, "", {git, "git://github.com/cmullaparthi/ibrowse.git", {branch, "master"}}},
{mochiweb, "1.5.1", {git, "git://github.com/basho/mochiweb",
{tag, "1.5.1-riak-1.0.x-fixes"}}}
]}.
{require_otp_vsn, "R14|R15"}.
{erl_opts, [
fail_on_warning,
debug_info,
%%warn_missing_spec,
{parse_transform, lager_transform}
]}.
{cover_enabled, true}.
{clean_files, ["*.eunit", "ebin/*.beam"]}.
{eunit_opts, [verbose, {report, {eunit_surefire, [{dir, "."}]}}]}.
{validate_app_modules, false}.
{sub_dirs, ["src"]}.