20 lines
413 B
Erlang
20 lines
413 B
Erlang
%% -*- mode: erlang -*-
|
|
{application, emqx_auth_ldap, [
|
|
{description, "EMQX LDAP Authentication and Authorization"},
|
|
{vsn, "0.1.2"},
|
|
{registered, []},
|
|
{mod, {emqx_auth_ldap_app, []}},
|
|
{applications, [
|
|
kernel,
|
|
stdlib,
|
|
emqx_auth,
|
|
emqx_resource,
|
|
emqx_connector
|
|
]},
|
|
{env, []},
|
|
{modules, []},
|
|
|
|
{licenses, ["Apache 2.0"]},
|
|
{links, []}
|
|
]}.
|