2009-11-25 22:23:42 +00:00
|
|
|
{application, rebar,
|
|
|
|
[{description, "Rebar: Erlang Build Tool"},
|
|
|
|
{vsn, "1"},
|
2009-11-30 18:12:25 +00:00
|
|
|
{modules, [ rebar_app_utils,
|
|
|
|
rebar_config,
|
|
|
|
rebar_core,
|
|
|
|
rebar_erlc_compiler,
|
|
|
|
rebar_file_utils,
|
|
|
|
rebar_log,
|
|
|
|
rebar_otp_app,
|
|
|
|
rebar_protobuffs_compiler,
|
2009-11-25 22:23:42 +00:00
|
|
|
rebar_rel_utils,
|
2009-11-30 18:12:25 +00:00
|
|
|
rebar_utils ]},
|
2009-11-25 22:23:42 +00:00
|
|
|
{registered, []},
|
|
|
|
{applications, [kernel,
|
|
|
|
stdlib,
|
|
|
|
sasl]},
|
|
|
|
{env, [
|
2009-11-29 23:44:30 +00:00
|
|
|
%% Default log level
|
|
|
|
{log_level, error},
|
|
|
|
|
2009-11-25 22:23:42 +00:00
|
|
|
%% Key/value list of base/default configuration used by
|
|
|
|
%% rebar_config during initialization
|
|
|
|
{default_config, [
|
2009-11-30 16:57:28 +00:00
|
|
|
{app_modules, [ rebar_protobuffs_compiler,
|
|
|
|
rebar_erlc_compiler,
|
2009-11-30 18:12:25 +00:00
|
|
|
rebar_otp_app ]}
|
2009-11-25 22:23:42 +00:00
|
|
|
]}
|
|
|
|
]}
|
|
|
|
]}.
|