Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

23 righe
638 B

  1. %% Sample provided by @tothlac
  2. {plugins, [
  3. {rebar_tidy_deps, ".*", {git, "https://github.com/tothlac/rebar3-tidy-deps-plugin.git"}},
  4. {rebar_alias, {git, "https://github.com/tsloughter/rebar_alias.git"}},
  5. rebar3_appup_plugin
  6. ]}.
  7. {deps, [
  8. {hackney, {git, "https://github.com/benoitc/hackney.git", {tag, "1.10.1"}}}
  9. ]}.
  10. %% Make work despite compat issues with strings and warnings
  11. {overrides, [
  12. {override, rebar3_appup_plugin, [
  13. {erl_opts, [
  14. {platform_define, "^19", brutal_purge_fixed},
  15. {platform_define, "^2", brutal_purge_fixed},
  16. %% warnings_as_errors,
  17. debug_info
  18. ]}
  19. ]}
  20. ]}.