Browse Source

upd/add deps links - make

221V 1 year ago
parent
commit
3120775ade
2 changed files with 6 additions and 2 deletions
  1. 4 0
      Makefile
  2. 2 2
      rebar.config

+ 4 - 0
Makefile

@@ -13,6 +13,10 @@ PLT_APPS = crypto public_key ssl
 # Dependencies.
 
 DEPS = cowlib ranch
+
+dep_cowlib = git https://git.4dev.win/n4u/cowlib.git 1.0.0-erl19
+dep_ranch = git https://git.4dev.win/n4u/ranch.git 1.0.0
+
 TEST_DEPS = ct_helper gun
 dep_ct_helper = git https://github.com/extend/ct_helper.git master
 

+ 2 - 2
rebar.config

@@ -1,4 +1,4 @@
 {deps, [
-	{cowlib, ".*", {git, "git://github.com/ninenines/cowlib.git", "1.0.0"}},
-	{ranch, ".*", {git, "git://github.com/ninenines/ranch.git", "1.0.0"}}
+	{cowlib, ".*", {git, "https://git.4dev.win/n4u/cowlib.git", {branch, "1.0.0-erl19"} }},
+	{ranch,  ".*", {git, "https://git.4dev.win/n4u/ranch.git",  {tag, "1.0.0"} }}
 ]}.