From 337009c3a00be8f1bfeda0fa7deb1d8ed37a855b Mon Sep 17 00:00:00 2001 From: Thales Macedo Garitezi Date: Mon, 10 Jun 2024 13:45:29 -0300 Subject: [PATCH] fix: declare `emqx_schema_registry` as a dependency of `emqx_schema_validation` --- apps/emqx_schema_registry/src/emqx_schema_registry.app.src | 3 ++- apps/emqx_schema_validation/src/emqx_schema_validation.app.src | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/emqx_schema_registry/src/emqx_schema_registry.app.src b/apps/emqx_schema_registry/src/emqx_schema_registry.app.src index efd9f1162..7577f8aeb 100644 --- a/apps/emqx_schema_registry/src/emqx_schema_registry.app.src +++ b/apps/emqx_schema_registry/src/emqx_schema_registry.app.src @@ -11,7 +11,8 @@ stdlib, erlavro, gpb, - jesse + jesse, + emqx ]}, {env, []}, {modules, []}, diff --git a/apps/emqx_schema_validation/src/emqx_schema_validation.app.src b/apps/emqx_schema_validation/src/emqx_schema_validation.app.src index 773e0fff0..2dfe710db 100644 --- a/apps/emqx_schema_validation/src/emqx_schema_validation.app.src +++ b/apps/emqx_schema_validation/src/emqx_schema_validation.app.src @@ -5,7 +5,8 @@ {mod, {emqx_schema_validation_app, []}}, {applications, [ kernel, - stdlib + stdlib, + emqx_schema_registry ]}, {env, []}, {modules, []},