16 lines
565 B
Erlang
16 lines
565 B
Erlang
%% -*- mode: erlang; erlang-indent-level: 4; indent-tabs-mode: nil -*-
|
|
{erl_opts, [debug_info]}.
|
|
{plugins, [rebar3_hex]}.
|
|
{deps, [
|
|
{gmserialization, {git, "https://git.qpq.swiss/QPQ-AG/gmserialization.git",
|
|
{ref, "ac64e01b0f"}}}
|
|
]}.
|
|
|
|
{xref_checks, [undefined_function_calls, undefined_functions,
|
|
locals_not_used,
|
|
deprecated_function_calls, deprecated_functions]}.
|
|
|
|
{dialyzer, [ {warnings, [unknown]}
|
|
, {plt_apps, all_deps}
|
|
, {base_plt_apps, [erts, kernel, stdlib]} ]}.
|