elmdap/rebar.config

33 lines
821 B
Text
Raw Normal View History

2016-04-25 21:15:22 +00:00
{erl_opts, [debug_info]}.
{lfe_first_files, []}.
{deps, [
{lfe, {git, "git://github.com/rvirding/lfe", {tag, "1.0"}}}
]}.
{plugins, [
{'lfe-compile', {git, "https://github.com/lfe-rebar3/compile.git", {tag, "0.3.0"}}}
]}.
{provider_hooks, [
{pre, [{compile, {lfe, compile}}]}
]}.
{profiles, [
{dev, [
{plugins, [
{'lfe-version', ".*", {git, "https://github.com/lfe-rebar3/version.git", {tag, "0.3.0"}}},
{'lfe-repl', ".*", {git, "https://github.com/lfe-rebar3/repl.git", {tag, "0.2.0"}}},
{'lfe-clean', ".*", {git, "https://github.com/lfe-rebar3/clean.git", {tag, "0.2.0"}}}
]}
]},
{test, [
{eunit_compile_opts, [
{src_dirs, ["test", "src"]}
]},
{deps, [
{ltest, ".*", {git, "git://github.com/lfex/ltest.git", {tag, "0.8.0"}}}]}
]}
]}.