-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
39 lines (32 loc) · 1.39 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
%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ts=4 sw=4 ft=erlang et
%% Check required ERTS or OTP release version
{require_otp_vsn, "R16|17|18"}.
%% Enable validation of the OTP app module list. Default is 'true'
{validate_app_modules, true}.
%% Compiler options
{erl_opts, [{parse_transform, lager_transform}]}.
%% == Dependencies ==
{deps, [%% External - Tools
{lager, ".*",
{git, "git://github.com/hibari/lager.git", {branch, "master"}}},
%% Tools
{gmt_util, ".*",
{git, "git://github.com/hibari/gmt-util.git", {tag, "v0.1.11.1"}}},
{cluster_info, ".*",
{git, "git://github.com/hibari/cluster-info.git", {tag, "v0.1.11"}}},
{congestion_watcher, ".*",
{git, "git://github.com/hibari/congestion-watcher.git", {tag, "v0.1.11"}}},
{partition_detector, ".*",
{git, "git://github.com/hibari/partition-detector.git", {tag, "v0.1.11"}}},
%% Hibari
{gdss_brick, ".*",
{git, "git://github.com/hibari/gdss-brick.git", {tag, "v0.1.11"}}},
{gdss_client, ".*",
{git, "git://github.com/hibari/gdss-client.git", {tag, "v0.1.11"}}},
{gdss_admin, ".*",
{git, "git://github.com/hibari/gdss-admin.git", {tag, "v0.1.11"}}},
%% External -Testing
{qc, ".*",
{git, "git://github.com/hibari/qc.git", {branch, "master"}}}
]}.