-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
26 lines (24 loc) · 984 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
%% -*- erlang -*-
{sub_dirs, ["rel"]}.
{deps, [
{lager, "2.0", {git, "git://github.com/basho/lager", {tag, "2.0.3"}}},
{jsx, ".*", {git, "git://github.com/talentdeficit/jsx", {tag, "develop"}}},
{saturn_groups_manager, ".*", {git, "git://github.com/angbrav/saturn_groups_manager.git", {branch, "master"}}},
{saturn_internal, ".*", {git, "git://github.com/angbrav/saturn_internal.git", {branch, "master"}}},
{riak_core, ".*",{git, "git://github.com/basho/riak_core", {tag, "develop"}}}
]}.
{erl_opts, [debug_info,
warnings_as_errors,
{parse_transform, lager_transform},
{i, "include"},
{src_dirs, ["src"]}
]}.
{cover_enabled, true}.
{edoc_opts, [{dir, "doc"}]}.
{eunit_opts, [verbose, {report, {eunit_surefire, [{dir,"."}]}}]}.
{plugin_dir, ".rebar_plugins"}.
{plugins, [rebar_test_plugin]}.
{riak_test, [
{test_paths, ["riak_test"]},
{test_output, "riak_test/ebin"}
]}.