From 3841297dd81a2994d33cad990f1a3ce5060c7179 Mon Sep 17 00:00:00 2001 From: Magnus Ottenklinger Date: Wed, 16 Oct 2019 20:45:58 +0200 Subject: [PATCH] Add rebar3-hex plugin This plugin is used to publish to hex.pm. This boils down to two steps: * `rebar3 hex user auth` (authenticate with hex.pm) * `rebar3 hex publish` (publish to public hex.pm) --- rebar.config | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rebar.config b/rebar.config index f641858e..dc41d94b 100644 --- a/rebar.config +++ b/rebar.config @@ -45,3 +45,5 @@ {dialyzer, [{warnings, [unmatched_returns]}, {plt_extra_apps, [erts, kernel, stdlib, compiler, crypto, syntax_tools]}]}. + +{plugins, [rebar3_hex]}.