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, {path, "../emqx"}},
{emqx_utils, {path, "../emqx_utils"}}, {emqx_utils, {path, "../emqx_utils"}},
{emqx_resource, {path, "../emqx_resource"}}, {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"}}} {epgsql, {git, "https://github.com/emqx/epgsql", {tag, "4.7.0.1"}}}
]}. ]}.

View File

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

View File

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