diff options
author | Stu Tomlinson <stu@nosnilmot.com> | 2020-09-03 14:35:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-03 15:35:34 +0200 |
commit | eada3b6e93d79ef55e8ffc96b8d787f175d3cd8b (patch) | |
tree | c0d559371922df86f8321748c8a2b0bcae06659a | |
parent | Update one more place where we had -include("xmpp.hrl") (diff) |
Fix syntax for lager dependency version (#3379)
Add 'tag' to lager dependency so that build with rebar3 will pull from
hex package instead of git checkout matching other dependencies
-rw-r--r-- | rebar.config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rebar.config b/rebar.config index 0e6b41f33..7803c0220 100644 --- a/rebar.config +++ b/rebar.config @@ -37,7 +37,7 @@ {idna, ".*", {git, "https://github.com/benoitc/erlang-idna", {tag, "6.0.0"}}}, {jiffy, ".*", {git, "https://github.com/davisp/jiffy", {tag, "1.0.5"}}}, {jose, ".*", {git, "https://github.com/potatosalad/erlang-jose", {tag, "1.9.0"}}}, - {lager, ".*", {git, "https://github.com/erlang-lager/lager", "3.6.10"}}, + {lager, ".*", {git, "https://github.com/erlang-lager/lager", {tag, "3.6.10"}}}, {if_var_true, tools, {luerl, ".*", {git, "https://github.com/rvirding/luerl", {tag, "v0.3"}}}}, {mqtree, ".*", {git, "https://github.com/processone/mqtree", {tag, "1.0.10"}}}, |