You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
635 B

  1. %% Sample provided by @tothlac
  2. {plugins, [
  3. {rebar_tidy_deps, ".*", {git, "https://github.com/ferd/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. ]}.