Dependencies have diverged:
* model (git@bitbucket.org:playrz/model.git) the dependency model in mix.exs is overriding a child dependency:
> In mix.exs: {:model, nil, [git: "g...@bitbucket.org:playrz/model.git", tag: "builds/57", manager: :mix]}
> In deps/core/mix.exs: {:model, nil, [git: "g...@bitbucket.org:playrz/model.git", tag: "builds/42"]}
@common_deps [
{:model, git: "g...@bitbucket.org:playrz/model.git", tag: "builds/57"},
{:exlager, github: "intellicore/exlager", tag: "r1.2"},
{:logger_lager_backend, "~> 0.0"},
{:tzdata, "~> 0.5"},
{:unit_fun, "~> 0.5"},
{:amnesia, "~> 0.2"},
{:poison, "~> 2.1", override: :true}, # dep overriden from ecto, where it is declared as optional
{:gproc, "~> 0.5"},
{:exprof, "~> 0.2"},
{:eflame, ~r/.*/, git: "https://github.com/proger/eflame.git", compile: "rebar compile"},
{:meck, github: "eproxus/meck", tag: "0.8.2", override: true},
{:edown, github: "uwiger/edown", tag: "0.7", override: true},
{:lager, github: "basho/lager", tag: "2.1.0", override: true},
{:elixometer, github: "intellicore/elixometer"},
{:ex_machina, "~> 0.6"},
{:faker, "~> 0.6"}
]
defp deps(:test) do
[
{:cobertura_cover, "~> 0.9"}
] ++ @common_deps
end
defp deps(:docs) do
[
{:ex_doc, "~> 0.11", only: :docs},
{:earmark, "~> 0.2", only: :docs}
] ++ @common_deps
end
defp deps(_) do
@common_deps
end
@common_deps [
{:model, git: "g...@bitbucket.org:playrz/model.git", tag: "builds/57"},
{:core, git: "g...@bitbucket.org:playrz/core.git", tag: "builds/40"},
{:ex_machina, "~> 0.6"},
{:faker, "~> 0.6"},
{:logger_lager_backend, "~> 0.0"},
{:poison, "~> 2.1", override: true},
{:gproc, "~> 0.5"},
{:timex, "~> 1.0"},
{:erlcloud, "~> 0.13", manager: :rebar3},
{:meck, github: "eproxus/meck", tag: "0.8.2", override: true},
{:edown, github: "uwiger/edown", tag: "0.7", override: true},
{:lager, github: "basho/lager", tag: "2.1.0", override: true}
]
defp deps(:test) do
[
{:cobertura_cover, "~> 0.9"},
{:temp, "~> 0.4"},
{:exprof, "~> 0.2"},
{:ex_machina, "~> 0.6"},
{:faker, "~> 0.6"}
] ++ @common_deps
end
defp deps(:docs) do
[
{:ex_doc, "~> 0.11", only: :docs},
{:earmark, "~> 0.2", only: :docs}
] ++ @common_deps
end
defp deps(_) do
@common_deps
end
--
You received this message because you are subscribed to the Google Groups "elixir-lang-talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elixir-lang-ta...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elixir-lang-talk/7f150965-2465-4ce0-a9f6-67cd09c7fcf7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web visit https://groups.google.com/d/msgid/elixir-lang-talk/CAGnRm4LekBuf1yt7q-4KkiFqRit9UPX2mpPTHtKD5FRcS1mVVw%40mail.gmail.com.