elmdap/rebar.config

57 lines
1.3 KiB
Text
Raw Permalink Normal View History

2016-04-25 21:15:22 +00:00
{erl_opts, [debug_info]}.
{lfe_first_files, []}.
{deps, [
2016-04-26 04:54:08 +00:00
{lfe, {git, "git://github.com/rvirding/lfe", {tag, "1.0"}}},
2016-04-26 21:21:43 +00:00
{calrissian, {git, "git://github.com/correl/calrissian", {branch, "rebar3"}}},
2017-09-12 21:35:48 +00:00
{webmachine, ".*", {git, "git://github.com/basho/webmachine.git", {branch, "master"}}},
jwt,
gen_smtp
2016-04-25 21:15:22 +00:00
]}.
{plugins, [
2016-04-26 21:21:43 +00:00
{'lfe-compile', {git, "https://github.com/lfe-rebar3/compile.git", {tag, "0.4.0"}}}
2016-04-25 21:15:22 +00:00
]}.
{provider_hooks, [
{pre, [{compile, {lfe, compile}}]}
]}.
2016-04-26 04:54:08 +00:00
{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}]
}.
2016-04-25 21:15:22 +00:00
{profiles, [
{dev, [
{plugins, [
2016-04-26 21:21:43 +00:00
{'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"}}},
2016-04-25 21:15:22 +00:00
{'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"}}}]}
2016-04-26 04:54:08 +00:00
]},
{prod, [
{relx, [
{dev_mode, false},
{include_erts, true}
2016-04-25 21:15:22 +00:00
]}
2016-04-26 04:54:08 +00:00
]}
2016-04-25 21:15:22 +00:00
]}.