aboutsummaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorChristophe Romain <christophe.romain@process-one.net>2017-03-20 16:58:48 +0100
committerChristophe Romain <christophe.romain@process-one.net>2017-03-20 16:58:48 +0100
commit6017785e106c8e1801448210f1f611230afb2788 (patch)
tree2c0675048e721f695c96b71632456a8adec38009 /mix.exs
parentUpdate mix deps (diff)
Fix compilation with mix (#1588)
Diffstat (limited to '')
-rw-r--r--mix.exs6
1 files changed, 3 insertions, 3 deletions
diff --git a/mix.exs b/mix.exs
index 589ed2212..031022521 100644
--- a/mix.exs
+++ b/mix.exs
@@ -40,9 +40,9 @@ defmodule Ejabberd.Mixfile do
defp deps do
[{:lager, "~> 3.2"},
- {:fast_xml, git: "https://github.com/processone/fast_xml.git", tag: "1.1.22", override: true},
- {:xmpp, git: "https://github.com/processone/xmpp.git", tag: "1.1.9"},
- {:p1_utils, git: "https://github.com/processone/p1_utils.git", tag: "1.0.7"},
+ {:p1_utils, github: "processone/p1_utils", tag: "1.0.7", override: true},
+ {:fast_xml, github: "processone/fast_xml", tag: "1.1.22", override: true, manager: :rebar},
+ {:xmpp, github: "processone/xmpp", tag: "1.1.9", manager: :rebar},
{:cache_tab, "~> 1.0"},
{:stringprep, "~> 1.0"},
{:fast_yaml, "~> 1.0"},