-
Notifications
You must be signed in to change notification settings - Fork 8
/
rebar.config
43 lines (43 loc) · 1.19 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
{deps, [
{lager, "~> 3.9.2"},
{jsx, "~> 2.11.0"},
{jsxd, "~> 0.2.4"},
{cowboy, "~> 2.9.0"},
{http_signature, "2.0.0"},
{gun, "~> 2.0"},
{ra, "~> 2.3.0"},
{erlydtl, "~> 0.14.0"},
{prometheus, "~> 4.8.0"},
{kerlberos, "~> 2.0.0"},
{rdp_proto, ".*", {git, "https://github.com/eait-itig/rdp_proto", {branch, "master"}}},
{rdp_lvgl, ".*", {git, "https://github.com/eait-itig/rdp_lvgl", {branch, "main"}}}
]}.
{plugins, [
{provider_asn1, "~> 0.3"}
]}.
{shell, [
{config, "config/sys.config"},
{apps, [rdpproxy]}
]}.
{relx, [
{release, {rdpproxy, "1.0.0"}, [rdpproxy, runtime_tools]},
{include_erts, true},
{extended_start_script, true},
{sys_config, "config/sys.config"},
{vm_args, "config/vm.args"},
{overlay, [{copy, "scripts/rdpproxy-admin", "bin/"}]}
]}.
{erl_opts, [{parse_transform, lager_transform}, {i, "include/"}]}.
{edoc_opts, [{preprocess, true}]}.
{overrides, [
{del, http_signature, [{erl_opts, [warnings_as_errors]}]}
]}.
{asn1_args, [{encoding, ber}, {compile_opts, [ber, der, undec_rest]}]}.
{provider_hooks, [
{pre, [
{compile, {asn, compile}}
]},
{post, [
{clean, {asn, clean}}
]}
]}.