- %% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
- %% ex: ts=4 sw=4 ft=erlang et
-
- {deps, [
- {erlware_commons, "",
- {git, "https://github.com/erlware/erlware_commons.git",
- {branch, "master"}}},
- {providers, "",
- {git, "https://github.com/tsloughter/providers.git",
- {tag, "v1.3.1"}}},
- {relx, "",
- {git, "https://github.com/tsloughter/relx.git",
- {branch, "mustache"}}},
- {getopt, "",
- {git, "https://github.com/jcomellas/getopt.git",
- {branch, "master"}}}]}.
-
- {escript_incl_apps,
- [getopt, erlware_commons, relx, providers, rebar]}.
- {escript_top_level_app, rebar}.
- {escript_name, rebar3}.
- {escript_emu_args, "%%! +sbtu +A0\n"}.
- %% escript_incl_extra is for internal rebar-private use only.
- %% Do not use outside rebar. Config interface is not stable.
- {escript_incl_extra, [{"_build/default/lib/relx/priv/templates/*", "."},
- {"priv/templates/*", "."},
- {"rebar/include/*", "."}]}.
-
- {erl_opts,
- [{platform_define, "R14", no_callback_support},
- {platform_define, "^[0-9]+", namespaced_types},
- {platform_define, "^R1[4|5]", deprecated_crypto},
- debug_info,
- warnings_as_errors]}.
-
- {dialyzer_plt_apps, [common_test, dialyzer, eunit, snmp]}.
-
- %% Profiles
- {profiles, [{test,
- [{deps, [
- {meck, "", {git, "https://github.com/eproxus/meck.git", {tag, "0.8.2"}}}
- ]}
- ]
- },
-
- %% We don't want erlydtl to attempt to run on the first compile pass to bootstrap
- {bootstrap, []}
- ]}.
-
- %% Overrides
- {overrides, [{override, erlware_commons, [{deps, []}, {plugins, []}]}]}.
|