Merge branch 'EMQX-9549-new-emqx-utils-app-to-collect-utility-modules' of github.com:sstrigler/emqx into EMQX-9549-new-emqx-utils-app-to-collect-utility-modules

This commit is contained in:
Stefan Strigler 2023-04-14 18:53:47 +02:00
commit 17d84fb5e0
4 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
# emqx_utils - Erlang utility library for EMQ X # Erlang utility library for EMQX
## Overview ## Overview

View File

@ -1,6 +1,6 @@
%% -*- mode: erlang -*- %% -*- mode: erlang -*-
{application, emqx_utils, [ {application, emqx_utils, [
{description, "An OTP application"}, {description, "Miscellaneous utilities for EMQX apps"},
% strict semver, bump manually! % strict semver, bump manually!
{vsn, "5.0.0"}, {vsn, "5.0.0"},
{modules, [ {modules, [

View File

@ -303,7 +303,7 @@ defmodule EMQXUmbrella.MixProject do
tools: :load, tools: :load,
covertool: :load, covertool: :load,
system_monitor: :load, system_monitor: :load,
emqx_utils: :permanent, emqx_utils: :load,
emqx_http_lib: :permanent, emqx_http_lib: :permanent,
emqx_resource: :permanent, emqx_resource: :permanent,
emqx_connector: :permanent, emqx_connector: :permanent,

View File

@ -391,7 +391,7 @@ relx_apps(ReleaseType, Edition) ->
{covertool, load}, {covertool, load},
% started by emqx_machine % started by emqx_machine
{system_monitor, load}, {system_monitor, load},
emqx_utils, {emqx_utils, load},
emqx_http_lib, emqx_http_lib,
emqx_resource, emqx_resource,
emqx_connector, emqx_connector,