summaryrefslogtreecommitdiff
path: root/p11p-daemon
diff options
context:
space:
mode:
authorLinus Nordberg <linus@sunet.se>2019-07-01 16:51:10 +0200
committerLinus Nordberg <linus@sunet.se>2019-07-01 16:51:10 +0200
commitef8ac8626079f02bede475b221f6a80b1f538f2d (patch)
tree26ddc7f8c764e89e32e4e2080f6b6065c3802611 /p11p-daemon
parentee59ec532e3a701b42d0e0861c67656c89b3db9e (diff)
add rebar and goldrush packages as dependencies
Add plugin rebar3_hex to make that work. Had to 'rebar3 local upgrade' before anything worked at all. Magic.
Diffstat (limited to 'p11p-daemon')
-rw-r--r--p11p-daemon/rebar.config11
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]}.
+