forked from Feuerlabs/exometer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
60 lines (53 loc) · 1.57 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
%% -*- erlang -*-
{erl_first_files,
[
"src/exometer_igor.erl",
"src/exometer_util.erl",
"src/exometer_entry.erl",
"src/exometer_probe.erl",
"EXOMETER-MIB.mib"
]}.
{mandatory_deps, [lager , parse_trans, setup]}.
{configurations, [{minimal, []},
{basic, [folsom]},
{amqp , [amqp_client, jiffy]},
{full , [{basic}, afunix, netlink, {amqp}]}]}.
{deps,
[
{lager, ".*", {git, "git://github.com/basho/lager.git", {tag,"2.0.3"}}},
{parse_trans, ".*", {git, "git://github.com/uwiger/parse_trans.git", {tag,"2.9"}}},
{afunix, ".*", {git, "https://github.com/tonyrog/afunix.git", {tag,"1.0"}}},
{netlink, ".*", {git, "git://github.com/Feuerlabs/netlink.git", {tag,"1.0"}}},
{folsom, ".*", {git, "git://github.com/boundary/folsom", {tag, "0.8.1"}}},
{amqp_client, ".*", {git, "git://github.com/jbrisbin/amqp_client.git", {tag, "rabbitmq-3.3.5"}}},
{jiffy, ".*", {git, "git://github.com/davisp/jiffy.git", "0.13.3"}},
{setup, ".*", {git, "git://github.com/uwiger/setup.git", {tag,"1.4"}}}
]}.
{erl_opts,
[
debug_info,
fail_on_warning,
{parse_transform, lager_transform},
{verbosity, trace}
]}.
{sub_dirs, ["src"]}.
{edoc_opts,
[
{doclet, edown_doclet},
{app_default, "http://www.erlang.org/doc/man"},
{doc_path, []},
{top_level_readme,
{"./README.md",
"https://github.com/Feuerlabs/exometer", "master"}}
]}.
{xref_checks,
[
undefined_function_calls,
undefined_functions,
locals_not_used,
deprecated_functions_calls,
deprecated_functions
]}.
{cover_enabled, true}.
{cover_print_enabled, true}.
{clean_files, ["test/app1/ebin/*.beam"]}.