forked from smarkets/erlang-bcrypt
-
Notifications
You must be signed in to change notification settings - Fork 19
/
rebar.config
62 lines (52 loc) · 1.25 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
%% -*- mode: erlang;erlang-indent-level: 2;indent-tabs-mode: nil -*-
{require_min_otp_vsn, "21.3"}.
{erl_opts,
[debug_info]}.
{pre_hooks,
[{"(linux|darwin|solaris)", compile, "make -C c_src"},
{"(freebsd|openbsd|dragonfly)", compile, "gmake -C c_src"}]}.
{post_hooks,
[{"(linux|darwin|solaris)", clean, "make -C c_src clean"},
{"(freebsd|openbsd|dragonfly)", clean, "gmake -C c_src clean"}]}.
{deps, [
{poolboy, "1.5.2"}
]}.
{profiles, [
{test, [
{xref_checks, [
undefined_function_calls,
locals_not_used,
deprecated_function_calls
]},
{xref_ignores, [
]},
{dialyzer, [
{warnings, [
no_return
]}
]},
{plugins, [
rebar3_proper
]},
{deps, [{proper,"1.4.0"}]}
]},
{edoc_private, [
{edoc_opts, [
{private, true}
]}
]}
]}.
{project_plugins, [rebar3_hex, rebar3_ex_doc]}.
{hex, [
{doc, #{provider => ex_doc}}
]}.
{ex_doc, [
{extras, [
{"README.md", #{title => "Overview"}},
{"LICENSE", #{title => "License"}}
]},
{main, "README.md"},
{source_url, "https://github.com/erlangpack/bcrypt"},
{assets, "assets"},
{api_reference, true}
]}.