Merge pull request #11440 from lafirest/fix/ldap_dep

fix(ldap): fix dependency problem
This commit is contained in:
lafirest 2023-08-14 20:34:58 +08:00 committed by GitHub
commit 6bea894205
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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
]},