mirror of
https://github.com/valitydev/snowflake.git
synced 2024-11-06 09:05:19 +00:00
18 lines
474 B
Erlang
18 lines
474 B
Erlang
%%-*- mode: erlang -*-
|
|
|
|
{plugins, [rebar_covertool]}.
|
|
|
|
{sub_dirs, ["rel"]}.
|
|
{erl_opts, [fail_on_warning, debug_info]}.
|
|
{eunit_opts, [verbose,
|
|
{report, {eunit_surefire, [{dir, "."}]}}]}.
|
|
{cover_enabled, true}.
|
|
{cover_print_enable, true}.
|
|
{clean_files, ["*.eunit", "ebin/*.beam"]}.
|
|
|
|
{covertool_eunit, ".eunit/eunit.coverage.xml"}.
|
|
{covertool_prefix_len, 2}.
|
|
|
|
{lib_dirs, ["deps"]}.
|
|
{deps, [{covertool, ".*", {git, "https://github.com/idubrov/covertool.git", "HEAD"}}]}.
|