Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

23 linhas
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. ]}.