From b07e28be2c7373f04060afe8fdfcb8c6db42376d Mon Sep 17 00:00:00 2001 From: Michael Slezak Date: Wed, 14 Aug 2024 16:10:46 -0600 Subject: [PATCH] Fix 'mix release' error: logger being regular and included application (#4265) --- mix.exs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mix.exs b/mix.exs index 9093fef9f..405b95c25 100644 --- a/mix.exs +++ b/mix.exs @@ -43,11 +43,11 @@ defmodule Ejabberd.MixProject do def application do [mod: {:ejabberd_app, []}, - applications: [:idna, :inets, :kernel, :sasl, :ssl, :stdlib, :mix, - :fast_tls, :fast_xml, :fast_yaml, :jose, + extra_applications: [:idna, :inets, :kernel, :sasl, :ssl, :stdlib, :mix, + :fast_tls, :fast_xml, :fast_yaml, :jose, :logger, :p1_utils, :stringprep, :syntax_tools, :yconf, :xmpp] ++ cond_apps(), - included_applications: [:mnesia, :os_mon, :logger, + included_applications: [:mnesia, :os_mon, :cache_tab, :eimp, :mqtree, :p1_acme, :p1_oauth2, :pkix] ++ cond_included_apps()]