From a179d5e34b5bb7f91c884cdee667ab73c807c1e8 Mon Sep 17 00:00:00 2001 From: Badlop Date: Mon, 27 May 2024 10:35:04 +0200 Subject: [PATCH] mix:exs: Move xmpp from included_applications to applications because now p1_pgsql has it in applications to satisfy dialyzer OTP 26, and we cannot have xmpp both in applications and included_applications. --- mix.exs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mix.exs b/mix.exs index c592422f2..d2afd331b 100644 --- a/mix.exs +++ b/mix.exs @@ -45,11 +45,11 @@ defmodule Ejabberd.MixProject do [mod: {:ejabberd_app, []}, applications: [:idna, :inets, :kernel, :sasl, :ssl, :stdlib, :mix, :fast_tls, :fast_xml, :fast_yaml, :jose, - :p1_utils, :stringprep, :syntax_tools, :yconf] + :p1_utils, :stringprep, :syntax_tools, :yconf, :xmpp] ++ cond_apps(), included_applications: [:mnesia, :os_mon, :cache_tab, :eimp, :mqtree, :p1_acme, - :p1_oauth2, :pkix, :xmpp] + :p1_oauth2, :pkix] ++ cond_included_apps()] end