18 lines
943 B
Erlang
18 lines
943 B
Erlang
{require_otp_vsn, "17"}.
|
|
|
|
%%% {erl_opts, [warnings_as_errors, {parse_transform, lager_transform}, debug_info]}.
|
|
{erl_opts, [{parse_transform, lager_transform}, debug_info]}.
|
|
{edoc_opts, [{dir, "./edoc"}]}.
|
|
|
|
{deps, [
|
|
{lager, ".*", {git, "git://github.com/basho/lager.git", {tag, "2.2.0"}}},
|
|
{merklet, ".*", {git, "https://github.com/ferd/merklet.git", {branch, "master"}}},
|
|
{protobuffs, "0.8.*", {git, "git://github.com/basho/erlang_protobuffs.git", {tag, "0.8.1p4"}}},
|
|
{riak_dt, ".*", {git, "git://github.com/basho/riak_dt.git", {branch, "develop"}}},
|
|
{node_package, ".*", {git, "git://github.com/basho/node_package.git", {branch, "develop"}}},
|
|
{eper, ".*", {git, "git://github.com/basho/eper.git", {tag, "0.92-basho1"}}},
|
|
{cluster_info, ".*", {git, "git://github.com/basho/cluster_info", {branch, "develop"}}}
|
|
]}.
|
|
|
|
{sub_dirs, ["rel", "apps/machi"]}.
|
|
{lib_dirs, ["apps/machi"]}.
|