24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-08 21:43:07 +02:00

Add missing application building with mix

This commit is contained in:
Christophe Romain 2017-12-27 12:33:52 +01:00
parent 56241feb58
commit 6bdf29676c

View File

@ -25,10 +25,10 @@ defmodule Ejabberd.Mixfile do
def application do def application do
[mod: {:ejabberd_app, []}, [mod: {:ejabberd_app, []},
applications: [:ssl], applications: [:ssl, :os_mon],
included_applications: [:lager, :mnesia, :inets, :p1_utils, :cache_tab, included_applications: [:lager, :mnesia, :inets, :p1_utils, :cache_tab,
:fast_tls, :stringprep, :fast_xml, :xmpp, :fast_tls, :stringprep, :fast_xml, :xmpp,
:stun, :fast_yaml, :esip, :jiffy, :p1_oauth2] :stun, :fast_yaml, :esip, :jiffy, :p1_oauth2, :fs]
++ cond_apps()] ++ cond_apps()]
end end