您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

55 行
1.8 KiB

  1. %% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
  2. %% ex: ts=4 sw=4 ft=erlang et
  3. {deps, [
  4. {erlware_commons, "",
  5. {git, "https://github.com/erlware/erlware_commons.git",
  6. {branch, "master"}}},
  7. {providers, "",
  8. {git, "https://github.com/tsloughter/providers.git",
  9. {tag, "v1.3.1"}}},
  10. {relx, "",
  11. {git, "https://github.com/tsloughter/relx.git",
  12. {branch, "mustache"}}},
  13. {mustache, "",
  14. {git, "https://github.com/tsloughter/mustache.git",
  15. {branch, "master"}}},
  16. {getopt, "",
  17. {git, "https://github.com/jcomellas/getopt.git",
  18. {branch, "master"}}}]}.
  19. {escript_incl_apps,
  20. [getopt, erlware_commons, relx, providers, rebar]}.
  21. {escript_top_level_app, rebar}.
  22. {escript_name, rebar3}.
  23. {escript_emu_args, "%%! +sbtu +A0\n"}.
  24. %% escript_incl_extra is for internal rebar-private use only.
  25. %% Do not use outside rebar. Config interface is not stable.
  26. {escript_incl_extra, [{"_build/default/lib/relx/priv/templates/*", "."},
  27. {"priv/templates/*", "."},
  28. {"rebar/include/*", "."}]}.
  29. {erl_opts,
  30. [{platform_define, "R14", no_callback_support},
  31. {platform_define, "^[0-9]+", namespaced_types},
  32. {platform_define, "^R1[4|5]", deprecated_crypto},
  33. debug_info,
  34. warnings_as_errors]}.
  35. {dialyzer_plt_apps, [common_test, dialyzer, eunit, snmp]}.
  36. %% Profiles
  37. {profiles, [{test,
  38. [{deps, [
  39. {meck, "", {git, "https://github.com/eproxus/meck.git", {tag, "0.8.2"}}}
  40. ]}
  41. ]
  42. },
  43. %% We don't want erlydtl to attempt to run on the first compile pass to bootstrap
  44. {bootstrap, []}
  45. ]}.
  46. %% Overrides
  47. {overrides, [{override, erlware_commons, [{deps, []}, {plugins, []}]},
  48. {override, mustache, [{deps, []}, {plugins, []}]}]}.