mirror of
https://github.com/ubf/ubf.git
synced 2026-04-27 23:28:24 +00:00
19 lines
348 B
Erlang
19 lines
348 B
Erlang
%%% -*- mode: erlang -*-
|
|
%%%
|
|
|
|
{application, test,
|
|
[
|
|
{description, "TEST"},
|
|
{vsn, "0.01"},
|
|
{id, "TEST"},
|
|
{modules, [
|
|
%% TODO: fill in this list, perhaps
|
|
]
|
|
},
|
|
{registered, [ ] },
|
|
%% NOTE: do not list applications which are load-only!
|
|
{applications, [ kernel, stdlib, sasl ] },
|
|
{mod, {test_app, []} }
|
|
]
|
|
}.
|