urilib/rebar.config

17 lines
527 B
Text
Raw Normal View History

2016-01-09 00:56:18 +00:00
%% -*- erlang -*-
{cover_enabled, true}.
{cover_print_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"]}.