rebar/ebin/rebar.app

25 lines
728 B
Text
Raw Normal View History

2009-11-25 22:23:42 +00:00
{application, rebar,
[{description, "Rebar: Erlang Build Tool"},
{vsn, "1"},
{modules, [ rebar_config,
rebar_utils,
rebar_app_utils,
rebar_rel_utils,
rebar_erlc_compiler]},
2009-11-25 22:23:42 +00:00
{registered, []},
{applications, [kernel,
stdlib,
sasl]},
{env, [
%% 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, [
{app_modules, [ rebar_erlc_compiler,
rebar_app_installer ]}
2009-11-25 22:23:42 +00:00
]}
]}
]}.