Packages

An OTP application providing an API to connect to Neo4j database

Current section

Files

Jump to
eneo4j rebar.config
Raw

rebar.config

{erl_opts, [debug_info]}.
{deps, [
{hackney, "1.18.1"},
{jiffy, "1.0.5"},
{worker_pool, "4.0.2"}
]}.
{shell, [
{apps, [eneo4j]}
]}.
{minimum_otp_vsn, "21.2"}.
{plugins,
[
erlfmt,
{gradualizer, {git, "https://github.com/josefs/Gradualizer.git", {branch, "master"}}},
{rebar3_codecov, {git, "https://github.com/esl/rebar3_codecov.git", {ref, "6bd31cc"}}},
rebar3_hex
]
}.
{erlfmt, [
write,
{files, "{src,test}/*.{erl}"}
]}.
{codecov_opts,
[
{path, ["/tmp", "_build/test/cover"]}
]}.
{cover_enabled, true}.
{cover_export_enabled,true}.
{edoc_opts, [{dir, "docs"}]}.