您可以在此处找到 rebar 的完整文档:
https://github.com/rebar/rebar/wiki
详细的 rebar.config 示例,显示大部分可用选项,请访问:
https://github.com/rebar/rebar/blob/master/rebar.config.sample
从 deps 部分阅读:
%% What dependencies we have, dependencies can be of 3 forms, an application
%% name as an atom, eg. mochiweb, a name and a version (from the .app file), or
%% an application name, a version and the SCM details on how to fetch it (SCM
%% type, location and revision). Rebar currently supports git, hg, bzr and svn.
{deps, [application_name,
{application_name, "1.0.*"},
{application_name, "1.0.*",
{git, "git://github.com/basho/rebar.git", {branch, "master"}}},
{application_name, "1.0.*",
{git, "git://github.com/basho/rebar.git", {branch, "master"}},
[{alt_url, "https://github.com/basho/rebar.git"}]}]}.
如您所见,您指出的具体参数与 Erlang 应用程序(旨在作为 OTP 应用程序)的版本有关。版本在Erlang Application files 中注明。