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
1 changed files with 2 additions and 2 deletions

View File

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