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:
authorChristophe Romain <christophe.romain@process-one.net>2017-12-21 13:10:56 +0300
committerChristophe Romain <christophe.romain@process-one.net>2017-12-21 13:10:56 +0300
commit826387446ab83dff6e5bc55d768f8ee3623e5277 (patch)
treef1b8ad54fedf8a7e4c778262607db1e2eed4db15 /mix.exs
parentaf9183cd540b628e5bd9f002af32a6698f740785 (diff)
Let mix aware of unpackaged hex.pm dependencies (#2170)
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs12
1 files changed, 6 insertions, 6 deletions
diff --git a/mix.exs b/mix.exs
index 7182fef4e..7dcf4484e 100644
--- a/mix.exs
+++ b/mix.exs
@@ -59,12 +59,12 @@ defmodule Ejabberd.Mixfile do
defp deps do
[{:lager, "~> 3.4.0"},
{:p1_utils, "~> 1.0"},
- {:fast_xml, "~> 1.1"},
- {:xmpp, "~> 1.1"},
- {:cache_tab, "~> 1.0"},
+ {:fast_xml, github: "processone/fast_xml", branch: "master", override: true, manager: :rebar},
+ {:xmpp, github: "processone/xmpp", branch: "master", override: true, manager: :rebar},
+ {:cache_tab, github: "processone/cache_tab", tag: "1.0.12", override: true, manager: :rebar},
{:stringprep, "~> 1.0"},
- {:fast_yaml, "~> 1.0"},
- {:fast_tls, "~> 1.0"},
+ {:fast_yaml, github: "processone/fast_yaml", tag: "1.0.12", override: true, manager: :rebar},
+ {:fast_tls, github: "processone/fast_tls", tag: "1.0.17", override: true, manager: :rebar},
{:stun, "~> 1.0"},
{:esip, "~> 1.0"},
{:jiffy, "~> 0.14.7"},
@@ -89,7 +89,7 @@ defmodule Ejabberd.Mixfile do
{config(:sqlite), {:sqlite3, "~> 1.1"}},
{config(:riak), {:riakc, "~> 2.4"}},
{config(:redis), {:eredis, "~> 1.0"}},
- {config(:zlib), {:ezlib, "~> 1.0"}},
+ {config(:zlib), {:ezlib, github: "processone/ezlib", tag: "1.0.3", override: true, manager: :rebar}},
{config(:iconv), {:iconv, "~> 1.0"}},
{config(:pam), {:epam, "~> 1.0"}},
{config(:tools), {:luerl, github: "rvirding/luerl", tag: "v0.2"}},