mirror of
https://github.com/correl/urilib.git
synced 2024-11-24 19:19:57 +00:00
17 lines
557 B
Erlang
17 lines
557 B
Erlang
%% -*- erlang -*-
|
|
{cover_enabled, true}.
|
|
{cover_print_enabled, true}.
|
|
{cover_export_enabled, true}.
|
|
{clean_files, ["*.eunit", "ebin/*.beam"]}.
|
|
{deps, [
|
|
{edown, ".*", {git, "https://github.com/uwiger/edown.git", "HEAD"}}
|
|
]}.
|
|
{erl_opts, [fail_on_warning]}.
|
|
{edoc_opts, [{doclet, edown_doclet},
|
|
{src_path, ["src/"]},
|
|
{stylesheet, ""},
|
|
{image, ""},
|
|
{edown_target, github}]}.
|
|
{eunit_exclude_deps, true}.
|
|
{eunit_opts, [verbose, {skip_deps, true}, {report,{eunit_surefire,[{dir,"."}]}}]}.
|
|
{lib_dirs,["deps"]}.
|