27 lines
567 B
Erlang
27 lines
567 B
Erlang
%% -*- mode: erlang; erlang-indent-level: 4; indent-tabs-mode: nil -*-
|
|
{application, gmhive_client,
|
|
[{description, "Gajumaru Hive Client"},
|
|
{vsn, "0.1.0"},
|
|
{registered, []},
|
|
{applications,
|
|
[
|
|
kernel
|
|
, stdlib
|
|
, sasl
|
|
, gproc
|
|
, inets
|
|
, ssl
|
|
, enoise
|
|
, gmconfig
|
|
, gmhive_protocol
|
|
, gmhive_worker
|
|
]},
|
|
{mod, {gmhc_app, []}},
|
|
{start_phases, [ {connect_to_primary, []} ]},
|
|
{env, []},
|
|
{modules, []},
|
|
{maintainers, ["QPQ IaaS AG"]},
|
|
{licensens, ["ISC"]},
|
|
{links, [{"gitea", "https://git.qpq.swiss/gmhive_client"}]}
|
|
]}.
|