1234567891011121314151617 |
- {lib_dirs, ["deps",".."]}.
- {erl_opts,[nowarn_deprecated_function,nowarn_export_all]}.
- {deps_dir, ["deps"]}.
- {deps, [
- {nitro, ".*", {git, "git://github.com/synrc/nitro", []}},
- {n2o, ".*", {git, "git://github.com/synrc/n2o", []}},
- {kvs, ".*", {git, "git://github.com/synrc/kvs", []}},
- {erlydtl, ".*", {git, "git://github.com/voxoz/erlydtl", []}},
- {oauth, ".*", {git, "git://github.com/tim/erlang-oauth", {tag, "v1.6.0"}}}
- ]}.
- {erlydtl_opts, [
- {doc_root, "priv"},
- {out_dir, "ebin"},
- {source_ext, ".dtl"},
- {module_ext, "_view"}
- ]}.
- {plugins, [rebar3_hex]}.
|