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:18:10 +0300
committerPaweł Chmielowski <pchmielowski@process-one.net>2019-01-15 18:18:10 +0300
commit9bd38eff1e2bd91839e5466444ccfce6911d6995 (patch)
treee52cd4b3527631f8e7ace91949f17653a802865d /mix.exs
parent604856eeb9ca54a2230a84aecc0b35b69ac571ff (diff)
Use tag for xmpp dependency
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs11
1 files changed, 6 insertions, 5 deletions
diff --git a/mix.exs b/mix.exs
index 12cf49413..005731989 100644
--- a/mix.exs
+++ b/mix.exs
@@ -25,11 +25,12 @@ 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]
- ++ cond_apps()]
+ 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()]
end
defp if_function_exported(mod, fun, arity, okResult) do