chore: update gateways deps

This commit is contained in:
JianBo He 2023-04-01 11:22:01 +08:00
parent 9577beaa4e
commit 3a3879f99f
11 changed files with 25 additions and 10 deletions

View File

@ -1,2 +1,4 @@
{erl_opts, [debug_info]}.
{deps, []}.
{deps, [ {emqx, {path, "../../apps/emqx"}},
{emqx_gateway, {path, "../../apps/emqx_gateway"}}
]}.

View File

@ -2,7 +2,7 @@
{description, "CoAP Gateway"},
{vsn, "0.1.0"},
{registered, []},
{applications, [kernel, stdlib, emqx_gateway]},
{applications, [kernel, stdlib, emqx, emqx_gateway]},
{env, []},
{modules, []},
{licenses, ["Apache 2.0"]},

View File

@ -1,5 +1,7 @@
{erl_opts, [debug_info]}.
{deps, []}.
{deps, [ {emqx, {path, "../../apps/emqx"}},
{emqx_gateway, {path, "../../apps/emqx_gateway"}}
]}.
{plugins, [
{grpc_plugin, {git, "https://github.com/HJianBo/grpc_plugin", {tag, "v0.10.2"}}}

View File

@ -2,7 +2,7 @@
{description, "ExProto Gateway"},
{vsn, "0.1.0"},
{registered, []},
{applications, [kernel, stdlib, emqx_gateway, grpc]},
{applications, [kernel, stdlib, grpc, emqx, emqx_gateway]},
{env, []},
{modules, []},
{licenses, ["Apache 2.0"]},

View File

@ -1,2 +1,4 @@
{erl_opts, [debug_info]}.
{deps, []}.
{deps, [ {emqx, {path, "../../apps/emqx"}},
{emqx_gateway, {path, "../../apps/emqx_gateway"}}
]}.

View File

@ -2,7 +2,7 @@
{description, "LwM2M Gateway"},
{vsn, "0.1.0"},
{registered, []},
{applications, [kernel, stdlib, emqx_gateway, emqx_coap]},
{applications, [kernel, stdlib, emqx, emqx_gateway, emqx_coap]},
{env, []},
{modules, []},
{licenses, ["Apache 2.0"]},

View File

@ -1,2 +1,4 @@
{erl_opts, [debug_info]}.
{deps, []}.
{deps, [ {emqx, {path, "../../apps/emqx"}},
{emqx_gateway, {path, "../../apps/emqx_gateway"}}
]}.

View File

@ -2,7 +2,7 @@
{description, "MQTT-SN Gateway"},
{vsn, "0.1.0"},
{registered, []},
{applications, [kernel, stdlib, emqx_gateway]},
{applications, [kernel, stdlib, emqx, emqx_gateway]},
{env, []},
{modules, []},
{licenses, ["Apache 2.0"]},

View File

@ -1,2 +1,4 @@
{erl_opts, [debug_info]}.
{deps, []}.
{deps, [ {emqx, {path, "../../apps/emqx"}},
{emqx_gateway, {path, "../../apps/emqx_gateway"}}
]}.

View File

@ -2,7 +2,7 @@
{description, "Stomp Gateway"},
{vsn, "0.1.0"},
{registered, []},
{applications, [kernel, stdlib, emqx_gateway]},
{applications, [kernel, stdlib, emqx, emqx_gateway]},
{env, []},
{modules, []},
{licenses, ["Apache 2.0"]},

View File

@ -221,6 +221,11 @@ defmodule EMQXUmbrella.MixProject do
applications: applications(edition_type),
skip_mode_validation_for: [
:emqx_gateway,
:emqx_stomp,
:emqx_mqttsn,
:emqx_coap,
:emqx_lwm2m,
:emqx_exproto,
:emqx_dashboard,
:emqx_resource,
:emqx_connector,