elmdap/rebar.config
2017-09-13 13:04:20 -04:00

56 lines
1.3 KiB
Erlang

{erl_opts, [debug_info]}.
{lfe_first_files, []}.
{deps, [
{lfe, {git, "git://github.com/rvirding/lfe", {tag, "1.0"}}},
{calrissian, {git, "git://github.com/correl/calrissian", {branch, "rebar3"}}},
{webmachine, ".*", {git, "git://github.com/basho/webmachine.git", {branch, "master"}}},
jwt,
gen_smtp
]}.
{plugins, [
{'lfe-compile', {git, "https://github.com/lfe-rebar3/compile.git", {tag, "0.4.0"}}}
]}.
{provider_hooks, [
{pre, [{compile, {lfe, compile}}]}
]}.
{relx, [{release, {'elmdap', "0.1.0"},
['elmdap',
sasl]},
{sys_config, "./config/sys.config"},
{vm_args, "./config/vm.args"},
{dev_mode, true},
{include_erts, false},
{extended_start_script, true}]
}.
{profiles, [
{dev, [
{plugins, [
{'lfe-version', ".*", {git, "https://github.com/lfe-rebar3/version.git", {tag, "0.4.0"}}},
{'lfe-repl', ".*", {git, "https://github.com/lfe-rebar3/repl.git", {tag, "0.2.1"}}},
{'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"}}}]}
]},
{prod, [
{relx, [
{dev_mode, false},
{include_erts, true}
]}
]}
]}.