forked from dnsimple/erldns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
49 lines (41 loc) · 1.13 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
%%-*- mode: erlang -*-
{cover_enabled, true}.
{erl_opts, [debug_info, fail_on_warning,
{platform_define, "^[0-9]+", namespaced_types},
{parse_transform, lager_transform}]}.
{deps, [lager,
recon,
folsom,
jsx,
dns_erlang,
iso8601
]}.
{profiles, [{test, [{deps, [proper]}]}]}.
{shell, [{apps, [erldns]},
{config, "erldns.config"}]}.
{relx, [{release, {erldns, "1.0.0"},
[erldns]},
{dev_mode, true},
{include_erts, false},
{sys_config, "erldns.config"},
{overlay, [{copy, "priv/example.zone.json", "priv/example.zone.json"},
{copy, "priv/test.zones.json", "priv/test.zones.json"}]},
{extended_start_script, true}]}.
%% This is a rebar3-ism
{overrides, [
{override, dns_erlang,
[
{plugins,[
{provider_asn1, "0.2.3"}
]},
{provider_hooks, [
{pre, [
{compile, {asn, compile}}
]},
{post, [
{clean, {asn, clean}}
]}
]}
]
}
]}.