rebar.config 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {sub_dirs,["apps"]}.
  2. {lib_dirs,["apps","deps"]}.
  3. {deps_dir,"deps"}.
  4. {deps, [
  5. {gproc, ".*", {git, "https://git.4dev.win/n4u/gproc.git", {tag, "0.9.0"}}},
  6. %{syn, ".*", {git, "https://git.4dev.win/n4u/syn.git", {tag, "1.1.0"}}},
  7. {jsone, ".*", {git, "https://git.4dev.win/n4u/jsone.git", {tag, "1.4.7"} }},
  8. {erlydtl, ".*", {git, "https://git.4dev.win/n4u/erlydtl.git", {tag, "erl25"}}},
  9. {nitro, ".*", {git, "https://git.4dev.win/n4u/nitro.git", {tag, "6.6.4-erl25"} }},
  10. {fs, ".*", {git, "https://git.4dev.win/n4u/fs.git", {tag, "6.12"} }},
  11. {active, ".*", {git, "https://git.4dev.win/n4u/active.git", {tag, "6.2-erl25"} }}, %% todo fix hot reload with active and mad
  12. {sh, ".*", {git, "https://git.4dev.win/n4u/sh.git", {tag, "4.1.1-erl25"} }},
  13. {epgsql, ".*", {git, "https://git.4dev.win/n4u/epgsql.git", {tag, "4.6.0"} }},
  14. {pooler, ".*", {git, "https://git.4dev.win/n4u/pooler.git", {tag, "erl25"} }},
  15. {herd, ".*", {git, "https://git.4dev.win/n4u/herd.git", {tag, "erl25"} }},
  16. {epgsql_pool, ".*", {git, "https://git.4dev.win/n4u/epgsql_pool.git", {tag, "erl25"} }},
  17. %%{cowlib, ".*", {git, "https://git.4dev.win/n4u/cowlib.git", {branch, "1.0.2-erl23"} }},
  18. %%{ranch, ".*", {git, "https://git.4dev.win/n4u/ranch.git", {tag, "1.8.0"} }},
  19. %%{cowboy, ".*", {git, "https://git.4dev.win/n4u/cowboy.git", {tag, "1.1.2-erl23"} }},
  20. {cowlib, ".*", {git, "https://git.4dev.win/n4u/cowlib.git", {branch, "2.11.0"} }},
  21. {ranch, ".*", {git, "https://git.4dev.win/n4u/ranch.git", {tag, "1.8.0"} }},
  22. {cowboy, ".*", {git, "https://git.4dev.win/n4u/cowboy.git", {branch, "2.9.0-b"} }},
  23. %{n4u, ".*", {git, "https://git.4dev.win/n4u/n4u.git", {branch, "master"} }},
  24. {n4u, ".*", {git, "https://git.4dev.win/n4u/n4u.git", {tag, "4.5-erl25"} }},
  25. %{rest, ".*", {git, "https://git.4dev.win/n4u/rest.git", {tag, "2.9-erl23"} }}, %% cowboy1 %% todo check debug
  26. %{rest, ".*", {git, "https://git.4dev.win/n4u/rest.git", {tag, "5.10-erl24"} }}, %% cowboy2 %% todo check debug
  27. %{mad, ".*", {git, "https://git.4dev.win/n4u/mad.git", {branch, "n4u"} }},
  28. {mad, ".*", {git, "https://git.4dev.win/n4u/mad.git", {tag, "2.10.2-erl25"} }},
  29. {kvs, ".*", {git, "https://git.4dev.win/n4u/kvs.git", {tag, "3.9.2-erl25"}}},
  30. {oauth, ".*", {git, "https://git.4dev.win/n4u/erlang-oauth.git", {tag, "v2.0.0"} }},
  31. {avz, ".*", {git, "https://git.4dev.win/n4u/avz.git", {tag, "4.4.1-erl25"} }}
  32. ]}.
  33. {fetch_speed,fast_master}.
  34. {verbose,1}.