-
Notifications
You must be signed in to change notification settings - Fork 1
/
rebar.config
67 lines (52 loc) · 1.87 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
61
62
63
64
65
66
%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ts=4 sw=4 ft=erlang et
{minimum_otp_vsn, "18"}.
{erl_opts, [
%% Erlang releases after 17 don't put R in front of their name, and
%% also require dict() to be written like dict:dict()
{platform_define, "^[0-9]+", namespaced_dicts},
debug_info,
export_all
]}.
{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_util"}}
]}.
{clean_files, ["test/*.beam"]}.
{ct_dir, "test"}.
{ct_extra_params, ""}.
{ct_use_short_names, true}.
{cover_enabled, true}.
{cover_print_enabled, true}.
{dialyzer, [{warning, [unknown,
unmatched_returns,
error_handling,
race_conditions,
underspecs]}]}.
%% ASN.1
{asn1_opts, [ber, der, {asn_dir, "asn1"}, {outdir, "src"}]}.
{plugins, [{rebar3_asn1_compiler, "1.0.0"}]}.
{provider_hooks, [
{pre,
[{clean, {asn1, clean}},
{compile, {asn1, compile}}]}
]}.
%% deps
{deps, [
{uuid, ".*",
{git, "https://github.com/okeuday/uuid.git", {branch, "master"}}},
{sc_util, ".*",
{git, "https://github.com/silentcircle/sc_util.git", {branch, "master"}}},
{parse_trans, ".*",
{git, "https://github.com/uwiger/parse_trans.git", {branch, "master"}}},
{jsx, ".*",
{git, "https://github.com/talentdeficit/jsx.git", {branch, "master"}}}
]
}.