Current section

Files

Jump to
mongoose_jid rebar.config
Raw

rebar.config

{erl_opts, []}.
{dialyzer,
[{warnings,
[unknown,
unmatched_returns,
error_handling,
underspecs
]}]}.
{deps, [
{stringprep, "~> 1.0"}
]}.
{project_plugins, [
rebar3_hex,
rebar3_ex_doc
]}.
{profiles, [
{test, [
{cover_enabled, true},
{cover_export_enabled, true},
{deps, [{proper, "1.5.0"}]},
{plugins, [{rebar3_codecov, "0.7.0"}]}
]},
{prod, [
{erl_opts, [deterministic]}
]}
]}.
{hex, [
{doc, #{provider => ex_doc}}
]}.
{ex_doc, [
{extras, [<<"README.md">>, <<"LICENSE">>]},
{main, <<"readme">>},
{source_url, <<"https://github.com/esl/mongoose_jid">>}
]}.