-
Notifications
You must be signed in to change notification settings - Fork 1
/
rebar.config
57 lines (45 loc) · 1.71 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
%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ts=4 sw=4 ft=erlang et
{erl_opts, [
%% Erlang releases after 17 don't put R in front of their name, and
%% also require queue() to be written like queue:queue()
{platform_define, "^[0-9]+", namespaced_queues},
debug_info,
export_all,
{src_dirs, ["src"]},
{parse_transform, lager_transform}
]}.
{eunit_opts, [verbose,
{report, {eunit_surefire, [{dir, "."}]}}]}.
{edoc_opts, [{doclet, edown_doclet},
{source_path, ["src"]},
{stylesheet, ""},
{image, ""},
{app_default, "http://www.erlang.org/doc/man"},
{edown_target, github},
{top_level_readme,
{"./README.md", "http://github.com/SilentCircle/apns_erl"}}
]}.
{clean_files, ["test/*.beam"]}.
{ct_opts, [{spec, "apns_erl.test.spec"}]}.
{cover_enabled, true}.
{cover_print_enabled, true}.
{deps, [
{parse_trans, ".*",
{git, "https://github.com/uwiger/parse_trans.git", {branch, "master"}}},
{lager, ".*",
{git, "https://github.com/basho/lager.git", {branch, "master"}}},
{jsx, ".*",
{git, "https://github.com/talentdeficit/jsx.git", {branch, "master"}}},
{sc_util, ".*",
{git, "[email protected]:SilentCircle/sc_util.git", {branch, "master"}}},
{sc_push_lib, ".*",
{git, "[email protected]:SilentCircle/sc_push_lib.git", {branch, "master"}}},
{apns_erl_util, ".*",
{git, "[email protected]:SilentCircle/apns_erl_util.git", {branch, "master"}}}
]
}.
%% == xref ==
{xref_warnings, false}.
%% xref checks to run
{xref_checks, [undefined_function_calls]}.