Current section

Files

Jump to
couchbeam_amuino rebar.config
Raw

rebar.config

%%-*- mode: erlang -*-
{erl_opts, [debug_info]}.
{plugins, [rebar3_hex]}.
{deps, [
{jsx, "2.8.0"},
{hackney, "1.6.5"}
]}.
{profiles, [{docs, [
{deps, [
{edown,
{git, "https://github.com/uwiger/edown.git",
{tag, "0.7"}}}
]},
{edoc_opts, [{doclet, edown_doclet},
{packages, false},
{subpackages, true},
{top_level_readme,
{"./README.md", "http://github.com/benoitc/couchbeam"}}]}
]},
{test, [
{cover_enabled, true},
{eunit_opts, [verbose]},
{deps, [
{oauth,
{git, "https://github.com/barrel-db/erlang-oauth.git",
{branch, "master"}}}
]}]}
]}.