@@ -1,2 +1,4 @@
{erl_opts, [debug_info]}.
-{deps, []}.
+{deps, [ {emqx, {path, "../../apps/emqx"}},
+ {emqx_gateway, {path, "../../apps/emqx_gateway"}}
+ ]}.
@@ -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"]},
@@ -1,5 +1,7 @@
{plugins, [
{grpc_plugin, {git, "https://github.com/HJianBo/grpc_plugin", {tag, "v0.10.2"}}}
{description, "ExProto Gateway"},
- {applications, [kernel, stdlib, emqx_gateway, grpc]},
+ {applications, [kernel, stdlib, grpc, emqx, emqx_gateway]},
{description, "LwM2M Gateway"},
- {applications, [kernel, stdlib, emqx_gateway, emqx_coap]},
+ {applications, [kernel, stdlib, emqx, emqx_gateway, emqx_coap]},
{description, "MQTT-SN Gateway"},
{description, "Stomp Gateway"},
@@ -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,