fix(ldap): fix dependency problem

This commit is contained in:
firest 2023-08-14 16:55:03 +08:00
parent b8d3dcf59a
commit 0b066fa20c
3 changed files with 3 additions and 4 deletions

View File

@ -9,7 +9,6 @@
{emqx, {path, "../emqx"}},
{emqx_utils, {path, "../emqx_utils"}},
{emqx_resource, {path, "../emqx_resource"}},
{eldap2, {git, "https://github.com/emqx/eldap2", {tag, "v0.2.2"}}},
{epgsql, {git, "https://github.com/emqx/epgsql", {tag, "4.7.0.1"}}}
]}.

View File

@ -1,7 +1,7 @@
%% -*- mode: erlang -*-
{application, emqx_connector, [
{description, "EMQX Data Integration Connectors"},
{vsn, "0.1.29"},
{vsn, "0.1.30"},
{registered, []},
{mod, {emqx_connector_app, []}},
{applications, [
@ -12,7 +12,6 @@
eredis_cluster,
eredis,
epgsql,
eldap2,
ehttpc,
jose,
emqx,

View File

@ -1,10 +1,11 @@
{application, emqx_ldap, [
{description, "EMQX LDAP Connector"},
{vsn, "0.1.0"},
{vsn, "0.1.1"},
{registered, []},
{applications, [
kernel,
stdlib,
eldap,
emqx_authn,
emqx_authz
]},