2009-11-25 22:23:42 +00:00
|
|
|
{application, rebar,
|
|
|
|
[{description, "Rebar: Erlang Build Tool"},
|
2009-12-18 22:12:35 +00:00
|
|
|
{vsn, "2"},
|
2009-12-04 20:48:57 +00:00
|
|
|
{modules, [ rebar,
|
|
|
|
rebar_app_utils,
|
2009-11-30 18:12:25 +00:00
|
|
|
rebar_config,
|
|
|
|
rebar_core,
|
2009-12-05 22:18:09 +00:00
|
|
|
rebar_ct,
|
2009-11-30 18:12:25 +00:00
|
|
|
rebar_erlc_compiler,
|
2009-12-05 22:18:09 +00:00
|
|
|
rebar_eunit,
|
2009-11-30 18:12:25 +00:00
|
|
|
rebar_file_utils,
|
|
|
|
rebar_log,
|
|
|
|
rebar_otp_app,
|
2009-12-05 22:18:09 +00:00
|
|
|
rebar_port_compiler,
|
2009-11-30 18:12:25 +00:00
|
|
|
rebar_protobuffs_compiler,
|
2009-12-02 19:13:30 +00:00
|
|
|
rebar_port_compiler,
|
2009-11-25 22:23:42 +00:00
|
|
|
rebar_rel_utils,
|
2009-12-02 19:13:30 +00:00
|
|
|
rebar_reltool,
|
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-12-02 12:15:35 +00:00
|
|
|
|
2009-12-12 14:34:29 +00:00
|
|
|
%% Processing modules
|
|
|
|
{modules, [
|
|
|
|
{app_dir, [ rebar_protobuffs_compiler,
|
|
|
|
rebar_erlc_compiler,
|
|
|
|
rebar_port_compiler,
|
|
|
|
rebar_otp_app,
|
|
|
|
rebar_ct,
|
|
|
|
rebar_eunit]},
|
|
|
|
{rel_dir, [ rebar_reltool ]}
|
|
|
|
]}
|
2009-11-25 22:23:42 +00:00
|
|
|
]}
|
|
|
|
]}.
|