-
Notifications
You must be signed in to change notification settings - Fork 1
/
rebar.dev.config
54 lines (47 loc) · 2.16 KB
/
rebar.dev.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
%%
%% Wave - MQTT Broker
%% Copyright (C) 2014 - Guillaume Bour
%%
%% This program is free software: you can redistribute it and/or modify
%% it under the terms of the GNU Affero General Public License as published
%% by the Free Software Foundation, version 3 of the License.
%%
%% This program is distributed in the hope that it will be useful,
%% but WITHOUT ANY WARRANTY; without even the implied warranty of
%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
%% GNU Affero General Public License for more details.
%%
%% You should have received a copy of the GNU Affero General Public License
%% along with this program. If not, see <http://www.gnu.org/licenses/>.
{erl_opts, [
debug_info,
fail_on_warning,
{parse_transform, lager_transform}
]}.
%{require_otp_vsn, "17"}.
{sub_dirs, ["rel"]}.
%{plugins, [erlson_rebar_plugin]}.
{plugins, [rebar_ct]}.
%%
{cover_enabled, true}.
{cover_print_enable, true}.
{plugins, [rebar_covertool, foo]}.
{cover_export_enabled, true}.
{covertool_eunit, {".eunit/eunit.coverdata", "eunit.coverage.xml"}}.
{eunit_opts, [verbose, {report, {eunit_surefire, [{dir, "."}]}}]}.
%
{deps, [
%{ranch , ".*", {git, "https://github.com/ninenines/ranch.git", {branch, "master"}}},
{ranch , ".*", {git, "https://github.com/ninenines/gbour.git", {branch, "master"}}},
{lager , ".*", {git, "https://github.com/basho/lager.git" , {branch, "master"}}},
{redbug, ".*", {git, "https://github.com/liveforeverx/redbug.git"}},
{emqttcli, ".*", {git, "https://github.com/alvaropag/emqttcli.git"}},
%{mqttc, ".*", {git, "https://github.com/sile/mqttc.git"}},
{sync, ".*", {git, "git://github.com/rustyio/sync.git"}},
{gproc , ".*", {git, "https://github.com/uwiger/gproc.git", {branch, "master"}}},
{jiffy , ".*", {git, "https://github.com/davisp/jiffy.git"}},
{shotgun , ".*", {git, "https://github.com/inaka/shotgun.git"}},
{erlsha2 , ".*", {git, "https://github.com/bosky101/erlsha2.git"}},
{eredis , ".*", {git, "https://github.com/wooga/eredis.git", {branch, "master"}}},
{sharded_eredis, ".*", {git, "https://github.com/jeremyong/sharded_eredis.git", {branch, "master"}}}
]}.