-
Notifications
You must be signed in to change notification settings - Fork 80
/
rebar.config
45 lines (38 loc) · 1.45 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
{require_otp_vsn, "R1[56]B|17"}.
{erl_opts,
[fail_on_warning,
{parse_transform, lager_transform}]}.
{deps_dir, "deps"}.
{lib_dirs, ["apps", "deps"]}.
{sub_dirs,
["apps/linc",
"apps/linc_us5",
"apps/linc_us4",
"apps/linc_us4_oe",
"apps/linc_us3",
"rel"]}.
{deps,
[{lager, ".*", {git, "https://github.com/basho/lager.git", {tag, "2.1.0"}}},
{of_protocol, ".*",
{git, "https://github.com/FlowForwarding/of_protocol.git", {branch, "appfest_bugs"}}},
{enetconf, ".*",
{git, "https://github.com/FlowForwarding/enetconf.git", {branch, "master"}}},
{of_config, ".*",
{git, "https://github.com/FlowForwarding/of_config.git", {branch, "master"}}},
{pkt, ".*", {git, "https://github.com/esl/pkt.git", {branch, "master"}}},
{meck, ".*", {git, "https://github.com/eproxus/meck.git",
{tag, "0.8.2"}}},
{procket, ".*", {git, "https://github.com/msantos/procket.git",
"0c32f661dc54aeff9c89a4ced3449eb9856a531f"}},
{epcap, ".*", {git, "https://github.com/esl/epcap.git",
{branch, "master"}}},
{tunctl, ".*", {git, "https://github.com/msantos/tunctl.git",
"4faf1a52f1b364df6eb71176477861dbf60dcf0f"}},
{sync, ".*",
{git, "https://github.com/mentels/sync.git", {branch, "master"}}},
{netlink, ".*", {git, "https://github.com/Feuerlabs/netlink", {tag, "1.0"}}}
]}.
{cover_enabled, true}.
{cover_print_enabled, true}.
{eunit_opts, [verbose]}.
{eunit_compile_opts, [{i, "../"}]}.