Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/processone/ejabberd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaweł Chmielowski <pchmielowski@process-one.net>2019-01-16 17:01:32 +0300
committerPaweł Chmielowski <pchmielowski@process-one.net>2019-01-16 17:01:32 +0300
commita30bfefb98aa62461c3ab09cbd6ce1843d751b32 (patch)
treedf340723d85dd959a43f393cbdccbb00ed9b1471 /mix.exs
parent3f2265d4575b76d6199a807470024ca9e97d3f19 (diff)
Move some apps back to included_applications
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs9
1 files changed, 5 insertions, 4 deletions
diff --git a/mix.exs b/mix.exs
index fb90b2427..d7ef1707b 100644
--- a/mix.exs
+++ b/mix.exs
@@ -25,10 +25,11 @@ defmodule Ejabberd.Mixfile do
def application do
[mod: {:ejabberd_app, []},
- applications: [:ssl, :os_mon, :lager, :mnesia, :inets, :p1_utils, :cache_tab,
- :fast_tls, :stringprep, :fast_xml, :xmpp,
- :stun, :fast_yaml, :esip, :jiffy, :p1_oauth2,
- :eimp, :base64url, :jose, :pkix]
+ applications: [:kernel, :stdlib, :sasl, :ssl],
+ included_applications: [:lager, :mnesia, :inets, :p1_utils, :cache_tab,
+ :fast_tls, :stringprep, :fast_xml, :xmpp,
+ :stun, :fast_yaml, :esip, :jiffy, :p1_oauth2,
+ :eimp, :base64url, :jose, :pkix]
++ cond_apps()]
end