mirror of
https://github.com/correl/rebar.git
synced 2024-11-23 19:19:54 +00:00
21 lines
599 B
Text
21 lines
599 B
Text
|
{application, rebar,
|
||
|
[{description, "Rebar: Erlang Build Tool"},
|
||
|
{vsn, "1"},
|
||
|
{modules, [ rebar_config,
|
||
|
rebar_utils,
|
||
|
rebar_app_utils,
|
||
|
rebar_rel_utils,
|
||
|
rebar_doterl_compiler]},
|
||
|
{registered, []},
|
||
|
{applications, [kernel,
|
||
|
stdlib,
|
||
|
sasl]},
|
||
|
{env, [
|
||
|
%% Key/value list of base/default configuration used by
|
||
|
%% rebar_config during initialization
|
||
|
{default_config, [
|
||
|
{app_modules, [ rebar_doterl_compiler ]}
|
||
|
]}
|
||
|
]}
|
||
|
]}.
|