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:
authorMickael Remond <mremond@process-one.net>2015-06-30 00:23:31 +0300
committerMickael Remond <mremond@process-one.net>2015-06-30 00:23:31 +0300
commit56034e6ed52f5944287c5049182e30b418219183 (patch)
tree2c58984f4d24bbea2a8dffa41fd606c04a2805e5 /mix.exs
parentdf57a07dd5d760d7956500caa3262ff84538a560 (diff)
Use https url for git dependencies for consistency
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs30
1 files changed, 15 insertions, 15 deletions
diff --git a/mix.exs b/mix.exs
index c93a08811..f4bd4ccf7 100644
--- a/mix.exs
+++ b/mix.exs
@@ -25,21 +25,21 @@ defmodule Ejabberd.Mixfile do
defp deps do
[
- {:p1_xml, github: "processone/xml"},
- {:p1_logger, github: "processone/p1_logger"},
- {:p1_yaml, github: "processone/p1_yaml"},
- {:p1_tls, github: "processone/tls"},
- {:p1_stringprep, github: "processone/stringprep"},
- {:p1_zlib, github: "processone/zlib"},
- {:p1_cache_tab, github: "processone/cache_tab"},
- {:p1_utils, github: "processone/p1_utils"},
- {:p1_iconv, github: "processone/eiconv"},
- {:esip, github: "processone/p1_sip"},
- {:p1_stun, github: "processone/stun"},
- {:ehyperloglog, github: "vaxelfel/eHyperLogLog"},
- {:p1_mysql, github: "processone/mysql"},
- {:p1_pgsql, github: "processone/pgsql"},
- {:eredis, github: "wooga/eredis"}
+ {:p1_xml, git: "https://github.com/processone/xml"},
+ {:p1_logger, git: "https://github.com/processone/p1_logger"},
+ {:p1_yaml, git: "https://github.com/processone/p1_yaml"},
+ {:p1_tls, git: "https://github.com/processone/tls"},
+ {:p1_stringprep, git: "https://github.com/processone/stringprep"},
+ {:p1_zlib, git: "https://github.com/processone/zlib"},
+ {:p1_cache_tab, git: "https://github.com/processone/cache_tab"},
+ {:p1_utils, git: "https://github.com/processone/p1_utils"},
+ {:p1_iconv, git: "https://github.com/processone/eiconv"},
+ {:esip, git: "https://github.com/processone/p1_sip"},
+ {:p1_stun, git: "https://github.com/processone/stun"},
+ {:ehyperloglog, git: "https://github.com/vaxelfel/eHyperLogLog"},
+ {:p1_mysql, git: "https://github.com/processone/mysql"},
+ {:p1_pgsql, git: "https://github.com/processone/pgsql"},
+ {:eredis, git: "https://github.com/wooga/eredis"}
]
end
end