2012-06-08 14:00:39 +00:00
|
|
|
%%-*- mode: erlang -*-
|
|
|
|
|
2012-06-09 15:15:17 +00:00
|
|
|
{plugins, [rebar_covertool]}.
|
|
|
|
|
2012-06-08 14:00:39 +00:00
|
|
|
{sub_dirs, ["rel"]}.
|
|
|
|
{erl_opts, [fail_on_warning, debug_info]}.
|
2012-06-09 15:15:17 +00:00
|
|
|
{eunit_opts, [verbose,
|
|
|
|
{report, {eunit_surefire, [{dir, "."}]}}]}.
|
2012-06-08 14:00:39 +00:00
|
|
|
{cover_enabled, true}.
|
2012-06-09 15:15:17 +00:00
|
|
|
{cover_print_enable, true}.
|
2012-06-08 14:00:39 +00:00
|
|
|
{clean_files, ["*.eunit", "ebin/*.beam"]}.
|
2012-06-09 15:15:17 +00:00
|
|
|
|
|
|
|
{covertool_eunit, ".eunit/eunit.coverage.xml"}.
|
|
|
|
{covertool_prefix_len, 2}.
|
2012-06-08 14:00:39 +00:00
|
|
|
|
2012-06-10 21:51:16 +00:00
|
|
|
{lib_dirs, ["deps"]}.
|
2012-06-09 15:15:17 +00:00
|
|
|
{deps, [{covertool, ".*", {git, "https://github.com/idubrov/covertool.git", "HEAD"}}]}.
|