forked from leo-project/leo_manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config.develop
23 lines (21 loc) · 1.22 KB
/
rebar.config.develop
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{require_otp_vsn, "R14B04|R15B01"}.
{deps, [
{leo_commons, ".*", {git, "https://github.com/leo-project/leo_commons.git", "develop"}},
{leo_logger, ".*", {git, "https://github.com/leo-project/leo_logger.git", "develop"}},
{leo_object_storage, ".*", {git, "https://github.com/leo-project/leo_object_storage.git", "develop"}},
{leo_redundant_manager, ".*", {git, "https://github.com/leo-project/leo_redundant_manager.git", "develop"}},
{leo_statistics, ".*", {git, "https://github.com/leo-project/leo_statistics.git", "develop"}},
{leo_s3_libs, ".*", {git, "https://github.com/leo-project/leo_s3_libs.git", "develop"}},
{meck, ".*", {git, "https://github.com/eproxus/meck.git", "master"}},
{jiffy, ".*", {git, "https://github.com/davisp/jiffy.git", "master"}}
]}.
{erl_opts, [{d, 'NOTEST'},
warn_obsolete_guard,
warn_unused_import,
warnings_as_errors,
warn_shadow_vars,
warn_export_vars,
warn_export_all]}.
{xref_checks, [undefined_function_calls]}.
{cover_enabled, true}.
{clean_files, []}.