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-15 18:17:45 +0300
committerPaweł Chmielowski <pchmielowski@process-one.net>2019-01-15 18:17:45 +0300
commit604856eeb9ca54a2230a84aecc0b35b69ac571ff (patch)
tree92bc39b076ce490ff919b84e81dec4143e46dc29 /mix.exs
parent2a24011b3b8cc919b6c0190dbcc62977cddd4e25 (diff)
Update list of applications in mix.exs
We now use normal application for starting dependencies, so we no longer should put them in included_applications
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs11
1 files changed, 5 insertions, 6 deletions
diff --git a/mix.exs b/mix.exs
index 005731989..12cf49413 100644
--- a/mix.exs
+++ b/mix.exs
@@ -25,12 +25,11 @@ defmodule Ejabberd.Mixfile do
def application do
[mod: {:ejabberd_app, []},
- 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,
- :eimp, :base64url, :jose, :pkix]
- ++ cond_apps()]
+ 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]
+ ++ cond_apps()]
end
defp if_function_exported(mod, fun, arity, okResult) do