forked from dgiot/dgiot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
emqx.app.src
28 lines (28 loc) · 903 Bytes
/
emqx.app.src
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{application, emqx,
[{id, "emqx"},
{description, "EMQ X"},
%% Note: this version is not the same as the release version! This
%% is simply the emqx `application' version, which is separate from
%% the emqx `release' version, which in turn is comprised of several
%% apps, one of which is this. See `emqx_release.hrl' for more
%% info.
{vsn, "4.4.11"}, % strict semver, bump manually!
{modules, []},
{registered, []},
{applications, [ kernel
, stdlib
, gproc
, gen_rpc
, esockd
, cowboy
, sasl
, lc
, os_mon]},
{mod, {emqx_app,[]}},
{env, []},
{licenses, ["Apache-2.0"]},
{maintainers, ["EMQ X Team <[email protected]>"]},
{links, [{"Homepage", "https://emqx.io/"},
{"Github", "https://github.com/emqx/emqx"}
]}
]}.