rebar.config 538 B

12345678910111213141516
  1. %% -*- erlang -*-
  2. {erl_opts, [debug_info]}.
  3. {deps, [
  4. {edown, ".*", {git, "git://github.com/esl/edown.git", "HEAD"}},
  5. {gen_leader, ".*",
  6. {git, "git://github.com/abecciu/gen_leader_revival.git", "HEAD"}}
  7. ]}.
  8. {dialyzer_opts, [{warnings, [no_unused,
  9. no_improper_lists, no_fun_app, no_match,
  10. no_opaque, no_fail_call,
  11. error_handling, no_match,
  12. behaviours, underspecs]}]}.
  13. {edoc_opts, [{doclet, edown_doclet},
  14. {top_level_readme,
  15. {"./README.md",
  16. "http://github.com/esl/gproc"}}]}.