forked from AntidoteDB/antidote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
23 lines (20 loc) · 1015 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
{sub_dirs, ["rel"]}.
{deps, [
{lager, "2.0", {git, "git://github.com/basho/lager", {tag, "2.0.3"}}},
{riak_core, ".*", {git, "git://github.com/basho/riak_core", {tag, "develop"}}},
{riak_dt, ".*", {git, "git://github.com/aletomsic/riak_dt", {tag, "type_check_antidote"}}},
{riak_api, ".*", {git, "git://github.com/basho/riak_api", {tag, "2.0.2"}}},
{riak_pb, ".*", {git, "git://github.com/syncfree/riak_pb", {tag, "new_interface"}}},
{erlzmq, ".", {git, "git://github.com/tcrain/erlzmq2", "master"}},
%% antidote_pb is client interface. Needed only for riak_tests.
{antidote_pb, ".*", {git, "git://github.com/syncfree/antidote_pb", {tag, "new_interface"}}}
]}.
{erl_opts, [debug_info, warnings_as_errors, {parse_transform, lager_transform}]}.
{cover_enabled, true}.
{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"}
]}.