diff options
-rw-r--r-- | p11p-daemon/rebar.config | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/p11p-daemon/rebar.config b/p11p-daemon/rebar.config index f944937..11c77b2 100644 --- a/p11p-daemon/rebar.config +++ b/p11p-daemon/rebar.config @@ -1,3 +1,5 @@ +%% -*- erlang -*- + {minimum_otp_vsn, "19.0"}. {erl_opts, [ @@ -6,10 +8,8 @@ ]}. {deps, [ - %% Debian packages: apt install erlang-lager erlang-goldrush - %% 2019-06-19: erlang-lager 3.2.4-1, erlang-goldrush 0.1.9-2 - %%{lager, {git, "https://github.com/erlang-lager/lager", {tag, "3.7.0"}}}, - %%{goldrush, fixme} + {lager, "3.7.0"}, + {goldrush, "0.1.9"} ]}. {relx, [ @@ -26,3 +26,6 @@ {include_erts, true}]}] }] }. + +{plugins, [rebar3_hex]}. + |