%% -*- mode: erlang -*-
{erl_opts, [debug_info]}.

{shell, [{config, "config/sys.config"}, {apps, [ct_containers]}]}.

% plugins
{plugins, [rebar3_hex]}.
{project_plugins, [erlfmt, rebar3_ex_doc]}.
{hex, [{doc, ex_doc}]}.
{erlfmt, [
  write,
  {files, "{src,include,test}/*.{hrl,erl}"}
]}.

{xref_checks,[undefined_function_calls,undefined_functions,locals_not_used,
             deprecated_function_calls,warnings_as_errors,deprecated_functions]}.


{deps, [{hackney, "1.18.0"}, {jsone, "1.6.1"}]}.

{profiles, [
    {test, [{deps,
        [
            {meck, "0.9.2"}
        ]
    }]
    }
]}.
