mirror of
https://github.com/correl/calrissian.git
synced 2024-11-23 19:19:57 +00:00
33 lines
825 B
Erlang
33 lines
825 B
Erlang
%% -*- mode: erlang -*-
|
|
|
|
{erl_opts, [debug_info]}.
|
|
|
|
{deps, [
|
|
{lfe, {git, "git://github.com/rvirding/lfe", {tag, "1.0"}}}
|
|
]}.
|
|
|
|
{plugins, [
|
|
{'lfe-compile', {git, "https://github.com/lfe-rebar3/compile.git", {tag, "0.4.0"}}}
|
|
]}.
|
|
|
|
{provider_hooks, [
|
|
{pre, [{compile, {lfe, compile}}]}
|
|
]}.
|
|
|
|
{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.1"}}}
|
|
]}
|
|
]},
|
|
|
|
{test, [
|
|
{eunit_compile_opts, [
|
|
{src_dirs, ["test", "src"]}
|
|
]},
|
|
{deps, [
|
|
{ltest, ".*", {git, "git://github.com/lfex/ltest.git", {tag, "0.8.0"}}}]}
|
|
]}
|
|
]}.
|