summaryrefslogtreecommitdiff
path: root/rebar.config
diff options
context:
space:
mode:
Diffstat (limited to 'rebar.config')
-rw-r--r--rebar.config19
1 files changed, 12 insertions, 7 deletions
diff --git a/rebar.config b/rebar.config
index 1d853c4..2fe37ee 100644
--- a/rebar.config
+++ b/rebar.config
@@ -2,19 +2,24 @@
%% ex: ts=4 sw=4 ft=erlang et
{deps, [{erlware_commons, "1.0.0"},
- {ssl_verify_fun, "1.1.1"},
- {certifi, "0.4.0"},
+ {ssl_verify_fun, "1.1.2"},
+ {certifi, "2.0.0"},
{providers, "1.6.0"},
{getopt, "0.8.2"},
{bbmustache, "1.3.0"},
- {relx, "3.22.2"},
+ {relx, "3.23.1"},
{cf, "0.2.2"},
- {cth_readable, "1.2.3"},
+ {cth_readable, "1.3.0"},
{eunit_formatters, "0.3.1"}]}.
{post_hooks, [{"(linux|darwin|solaris|freebsd|netbsd|openbsd)",
escriptize,
- "cp $REBAR_BUILD_DIR/bin/rebar3 ./rebar3 && chmod u+x rebar3"}]}.
+ "cp \"$REBAR_BUILD_DIR/bin/rebar3\" ./rebar3"},
+ {"win32",
+ escriptize,
+ "robocopy \"%REBAR_BUILD_DIR%/bin/\" ./ rebar3* "
+ "/njs /njh /nfl /ndl & exit /b 0"} % silence things
+ ]}.
{escript_name, rebar3}.
{escript_emu_args, "%%! +sbtu +A0\n"}.
@@ -33,8 +38,8 @@
%% Profiles
{profiles, [{test, [
- {deps, [{meck, "0.8.2"}]},
- {erl_opts, [debug_info]}
+ {deps, [{meck, "0.8.7"}]},
+ {erl_opts, [debug_info, nowarn_export_all]}
]
},