-
Notifications
You must be signed in to change notification settings - Fork 94
/
rebar.config
60 lines (49 loc) · 2.71 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{sub_dirs, ["rel"]}.
{require_otp_vsn, "R16|17"}.
{cover_enabled, false}.
%% EDoc options
{edoc_opts, [preprocess]}.
{lib_dirs, ["deps", "apps"]}.
{erl_opts, [debug_info,
warnings_as_errors,
{parse_transform, lager_transform},
{platform_define, "^[0-9]+", namespaced_types}]}.
{xref_checks, []}.
{xref_queries,
[{"(XC - UC) || (XU - X - B - \"(^riak$|^riak_cs_dummy_reader$|^riak_core_bucket$|^app_helper$|^riakc_pb_socket_fake$|^riak_object$|^riak_repl_pb_api$|^riak_cs_multibag$)\" : Mod)", []}]}.
{xref_queries_ee,
[{"(XC - UC) || (XU - X - B - \"(^riak$|^riak_cs_dummy_reader$|^riak_core_bucket$|^app_helper$|^riakc_pb_socket_fake$|^riak_object$)\" : Mod)", []}]}.
{reset_after_eunit, true}.
{plugin_dir, ".plugins"}.
{plugins, [rebar_test_plugin, rebar_lock_deps_plugin]}.
{client_test, [
{test_paths, ["client_tests/erlang"]},
{test_output, ".client_test"}
]}.
{riak_test, [
{test_paths, ["riak_test/tests", "riak_test/src",
"deps/riak_cs_multibag/riak_test/tests",
"deps/riak_cs_multibag/riak_test/src"]},
{test_output, "riak_test/ebin"}
]}.
{deps, [
{lager, ".*", {git, "git://github.com/basho/lager", {tag, "2.2.0"}}},
{lager_syslog, ".*", {git, "git://github.com/basho/lager_syslog", {tag, "2.1.1"}}},
{cuttlefish, ".*", {git, "git://github.com/basho/cuttlefish.git", {tag, "2.0.4"}}},
{node_package, ".*", {git, "git://github.com/basho/node_package", {tag, "2.0.3"}}},
{getopt, ".*", {git, "git://github.com/jcomellas/getopt.git", {tag, "v0.8.2"}}},
{webmachine, ".*", {git, "git://github.com/basho/webmachine", {tag, "1.10.8"}}},
{riakc, ".*", {git, "git://github.com/basho/riak-erlang-client", {tag, "2.1.1"}}},
{eper, ".*", {git, "git://github.com/basho/eper.git", "0.92-basho1"}},
{druuid, ".*", {git, "git://github.com/kellymclaughlin/druuid.git", {tag, "0.2"}}},
{poolboy, "0.8.*", {git, "git://github.com/basho/poolboy", "0.8.1p3"}},
{exometer_core, ".*", {git, "git://github.com/Feuerlabs/exometer_core", {tag, "1.2"}}},
{cluster_info, ".*", {git, "git://github.com/basho/cluster_info", {tag, "2.0.3"}}},
{xmerl, ".*", {git, "git://github.com/shino/xmerl", "1b016a05473e086abadbb3c12f63d167fe96c00f"}},
{erlcloud, ".*", {git, "git://github.com/basho/erlcloud.git", {tag, "0.4.6"}}},
{rebar_lock_deps_plugin, ".*", {git, "git://github.com/seth/rebar_lock_deps_plugin.git", {tag, "3.1.0"}}}
]}.
{deps_ee, [
{riak_repl_pb_api,".*",{git,"[email protected]:basho/riak_repl_pb_api.git", {tag, "2.1.1"}}},
{riak_cs_multibag,".*",{git,"[email protected]:basho/riak_cs_multibag.git", {tag, "2.1.0p1"}}}
]}.