-
Notifications
You must be signed in to change notification settings - Fork 2
/
rebar.config
41 lines (36 loc) · 1.1 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
%%% -*- erlang -*-
%%% vim: set ts=4 sts=4 sw=4 et:
{eunit_compile_opts, [export_all]}.
{eunit_opts, [verbose, {report, {eunit_surefire, [{dir, "."}]}}]}.
{cover_enabled, true}.
{cover_export_enabled, true}.
{deps_dir, "deps"}.
{erl_opts, [
{parse_transform, lager_transform},
warn_unused_vars,
warn_export_all,
warn_shadow_vars,
warn_unused_import,
warn_unused_function,
warn_bif_clash,
warn_unused_record,
warn_deprecated_function,
warn_obsolete_guard,
strict_validation,
warn_export_vars,
warn_exported_vars,
warn_untyped_record
]}.
{deps, [
% let it always be the first
{lager, "2.0.*",
{git, "git://github.com/basho/lager.git", {tag, "2.0.1"}}},
{utils, "0.1.*",
{git, "[email protected]:EchoTeam/utils.git", {branch, "master"}}},
{folsom, "0.7.*",
{git, "[email protected]:EchoTeam/folsom.git", {branch, "master"}}},
{corman, "1.0.*",
{git, "[email protected]:EchoTeam/corman.git", {branch, "master"}}},
{riemann, "0.1.*",
{git, "[email protected]:EchoTeam/erlang_riemann", {branch, "master"}}}
]}.