mirror of
https://github.com/correl/rebar.git
synced 2024-11-15 03:00:18 +00:00
39 lines
1.1 KiB
Erlang
39 lines
1.1 KiB
Erlang
{application, rebar,
|
|
[{description, "Rebar: Erlang Build Tool"},
|
|
{vsn, "1"},
|
|
{modules, [ rebar,
|
|
rebar_app_utils,
|
|
rebar_config,
|
|
rebar_core,
|
|
rebar_ct,
|
|
rebar_erlc_compiler,
|
|
rebar_eunit,
|
|
rebar_file_utils,
|
|
rebar_log,
|
|
rebar_otp_app,
|
|
rebar_port_compiler,
|
|
rebar_protobuffs_compiler,
|
|
rebar_port_compiler,
|
|
rebar_rel_utils,
|
|
rebar_reltool,
|
|
rebar_utils ]},
|
|
{registered, []},
|
|
{applications, [kernel,
|
|
stdlib,
|
|
sasl]},
|
|
{env, [
|
|
%% Default log level
|
|
{log_level, error},
|
|
|
|
%% 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 ]}
|
|
]}
|
|
]}
|
|
]}.
|