diff options
author | Christophe Romain <christophe.romain@process-one.net> | 2017-12-28 15:38:24 +0100 |
---|---|---|
committer | Christophe Romain <christophe.romain@process-one.net> | 2017-12-28 15:38:24 +0100 |
commit | cdc9c93b9bb60c134f2994f29da84f3a6a310ccf (patch) | |
tree | 81880d8f6c30653b5e58cfbe1d26d09b95976f93 /mix.exs | |
parent | Return default certificate on domain mismatch (diff) |
Fix stun/esip mix deps
Diffstat (limited to 'mix.exs')
-rw-r--r-- | mix.exs | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -59,14 +59,14 @@ defmodule Ejabberd.Mixfile do defp deps do [{:lager, "~> 3.4.0"}, {:p1_utils, "~> 1.0"}, - {:fast_xml, "~> 1.1"}, + {:fast_xml, "~> 1.1", manager: :rebar}, {:xmpp, "~> 1.1"}, {:cache_tab, "~> 1.0"}, {:stringprep, "~> 1.0"}, {:fast_yaml, "~> 1.0"}, - {:fast_tls, tag: "1.0.18", override: true}, - {:stun, "~> 1.0"}, - {:esip, "~> 1.0"}, + {:fast_tls, "~> 1.0"}, + {:stun, github: "processone/stun", tag: "1.0.17", override: true, manager: :rebar}, + {:esip, github: "processone/esip", tag: "1.0.18", override: true, manager: :rebar}, {:jiffy, "~> 0.14.7"}, {:p1_oauth2, "~> 0.6.1"}, {:distillery, "~> 1.0"}, |