forked from FlowForwarding/LINC-Switch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
25 lines (20 loc) · 888 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
24
25
{require_otp_vsn, "R15B"}.
{erl_opts, [fail_on_warning,
{parse_transform, lager_transform},
debug_info]}.
{sub_dirs, [
"apps/of_switch",
"rel"
]}.
{deps, [
{lager, ".*", {git, "http://github.com/basho/lager.git", "master"}},
{of_protocol, ".*", {git, "http://github.com/FlowForwarding/of_protocol.git", "master"}},
{meck, "0\.7\..*", {git, "http://github.com/eproxus/meck.git", "master"}},
{pkt, ".*", {git, "http://github.com/esl/pkt.git", "master"}},
{procket, ".*", {git, "http://github.com/msantos/procket.git", "master"}},
{epcap, ".*", {git, "http://github.com/esl/epcap.git", "master"}},
{tunctl, ".*", {git, "http://github.com/msantos/tunctl.git", "master"}}
]}.
{cover_enabled, true}.
{cover_print_enabled, true}.
{eunit_compile_opts, [{i, "../"}]}.