This is an automated email from the ASF dual-hosted git repository. vatamane pushed a commit to branch use-matching-tags-for-triq-deps in repository https://gitbox.apache.org/repos/asf/couchdb-hyper.git
commit 221ae8850fee51a7859083a8fdf677d2bbff11dd Author: Nick Vatamaniuc <[email protected]> AuthorDate: Thu May 31 00:05:23 2018 -0400 Use exactly matching tags for triq dependencies Otherwise rebar thinks there is a conflict: ``` ERROR: Conflicting dependencies for triq: [{"From: hyper", {[], {git, "https://github.com/apache/couchdb-triq", {tag,"v1.2.0"}}}}, {"From: asf2", {".*", {git, "https://github.com/apache/couchdb-triq.git", {tag,"v1.2.0"}}}}] ``` --- rebar-test.config | 2 +- rebar.config | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rebar-test.config b/rebar-test.config index b0d4b15..f595348 100644 --- a/rebar-test.config +++ b/rebar-test.config @@ -1,4 +1,4 @@ {cover_enabled, true}. {deps, [ - {triq, "", {git, "https://github.com/apache/couchdb-triq", {tag, "v1.2.0"}}} + {triq, ".*", {git, "https://github.com/apache/couchdb-triq.git", {tag, "v1.2.0"}}} ]}. diff --git a/rebar.config b/rebar.config index dc56e0e..6015992 100644 --- a/rebar.config +++ b/rebar.config @@ -1,7 +1,7 @@ {cover_enabled, true}. {deps, [ - {triq, "", {git, "https://github.com/apache/couchdb-triq", {tag, "v1.2.0"}}} + {triq, ".*", {git, "https://github.com/apache/couchdb-triq.git", {tag, "v1.2.0"}}} ]}. {port_specs, [ -- To stop receiving notification emails like this one, please contact [email protected].
