Packages

Riak & Riak CS client wrappers for LFE

Current section

Files

Jump to
lric rebar.config
Raw

rebar.config

{deps, [
{kla, {git, "https://github.com/lfex/kla.git", {tag, "0.8.0-rc4"}}},
{riakc, {git, "https://github.com/basho/riak-erlang-client.git", {tag, "2.5.2"}}}
]}.
{plugins, [
{'lfe-compile', {git, "https://github.com/lfe-rebar3/compile.git", {tag, "0.8.0-rc3"}}}
]}.
{provider_hooks, [
{pre, [{compile, {lfe, compile}}]}
]}.
{profiles, [
%% As an alternative to the default Github repos, you can use the Gitlab
%% mirror with the following:
%% $ rebar3 as gitlab compile
{gitlab, [
{deps, [
{lfe, {git, "https://gitlab.com/lfe/lfe.git", {tag, "v1.2.0"}}},
{lutil, {git, "https://gitlab.com/lfex/lutil.git", {tag, "0.10.0-rc6"}}},
{kla, {git, "https://gitlab.com/lfex/kla.git", {tag, "0.8.0-rc4"}}}
]},
{plugins, [
{'lfe-compile', {git, "https://gitlab.com/lfe-rebar3/compile.git", {tag, "0.8.0-rc2"}}}]}
]},
%% Or use Hex.pm instead with:
%% $ rebar3 as hexpm compile
{hexpm, [
{deps, [{lfe, "1.2.0"},
{kla, "0.8.0-rc4"},
{lutil, "0.10.0-rc6"}]},
{plugins, [{rebar3_lfe_compile, "0.8.0-rc2"}]}
]},
{dev, [
{deps, [
{lfe, {git, "https://github.com/rvirding/lfe.git", {branch, "develop"}}},
{kla, {git, "https://gitlab.com/lfex/kla.git", {tag, "0.8.0-rc4"}}}
]},
{plugins, [
{'lfe-version', {git, "https://github.com/lfe-rebar3/version.git", {tag, "0.5.0-rc2"}}},
{'lfe-clean', {git, "https://github.com/lfe-rebar3/clean.git", {tag, "0.4.0-rc1"}}}
]}
]},
{test, [
{deps, [
{ltest, {git, "https://github.com/lfex/ltest.git", {tag, "0.10.0-rc6"}}},
{lutil, {git, "https://github.com/lfex/lutil.git", {tag, "0.10.0-rc6"}}},
{'lfe-version', {git, "https://github.com/lfe-rebar3/version.git", {tag, "0.5.0-rc2"}}}]},
{plugins, [
{'lfe-test', {git, "https://github.com/lfe-rebar3/test.git", {tag, "0.4.0-rc4"}}}]},
{eunit_opts, [verbose]},
{erl_opts, [{src_dirs, ["src", "test"]}]}
]},
{docs, [
{plugins, [
{lodox, {git, "https://github.com/lfe-rebar3/lodox.git", {tag, "0.12.10"}}}
]},
{lodox,
[{apps,
[{lric,
[{'source-uri',
"https://github.com/lfex/lric/blob/{version}/{filepath}#L{line}"},
{'output-path', "docs/master/current/api"}]}]}]}
]}
]}.