rebar.config 658 B

1234567891011121314151617
  1. {lib_dirs, ["deps",".."]}.
  2. {erl_opts,[nowarn_deprecated_function,nowarn_export_all]}.
  3. {deps_dir, ["deps"]}.
  4. {deps, [
  5. {nitro, ".*", {git, "git://github.com/synrc/nitro", []}},
  6. {n2o, ".*", {git, "git://github.com/synrc/n2o", []}},
  7. {kvs, ".*", {git, "git://github.com/synrc/kvs", []}},
  8. {erlydtl, ".*", {git, "git://github.com/voxoz/erlydtl", []}},
  9. {oauth, ".*", {git, "git://github.com/tim/erlang-oauth", {tag, "v1.6.0"}}}
  10. ]}.
  11. {erlydtl_opts, [
  12. {doc_root, "priv"},
  13. {out_dir, "ebin"},
  14. {source_ext, ".dtl"},
  15. {module_ext, "_view"}
  16. ]}.
  17. {plugins, [rebar3_hex]}.