diff options
author | Fred Hebert <mononcqc@ferd.ca> | 2017-12-04 17:13:55 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-04 17:13:55 -0500 |
commit | 2a349a7446f5020ef57eb6e5862ccc480d405e3d (patch) | |
tree | a03c39047b7c1bbf529d1f30e5889b43089e21bc /systest/all_SUITE_data/resource_plugins | |
parent | 1f57efcd5c787a71bbc1237dd2b1f99610593286 (diff) | |
parent | fb67eb0ee95b2f03dc6c51535ab4b18ea70d315f (diff) |
Merge pull request #1681 from ferd/fix-plugin-paths-again
Fix Plugin path handling (again!)
Diffstat (limited to 'systest/all_SUITE_data/resource_plugins')
-rw-r--r-- | systest/all_SUITE_data/resource_plugins/rebar.config | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/systest/all_SUITE_data/resource_plugins/rebar.config b/systest/all_SUITE_data/resource_plugins/rebar.config new file mode 100644 index 0000000..7baec1f --- /dev/null +++ b/systest/all_SUITE_data/resource_plugins/rebar.config @@ -0,0 +1,23 @@ +%% Sample provided by @tothlac +{plugins, [ + {rebar_tidy_deps, ".*", {git, "https://github.com/ferd/rebar3-tidy-deps-plugin.git"}}, + {rebar_alias, {git, "https://github.com/tsloughter/rebar_alias.git"}}, + rebar3_appup_plugin +]}. + +{deps, [ + {hackney, {git, "https://github.com/benoitc/hackney.git", {tag, "1.10.1"}}} + ]}. + + +%% Make work despite compat issues with strings and warnings +{overrides, [ + {override, rebar3_appup_plugin, [ + {erl_opts, [ + {platform_define, "^19", brutal_purge_fixed}, + {platform_define, "^2", brutal_purge_fixed}, + %% warnings_as_errors, + debug_info + ]} + ]} +]}. |