erlangbureau / jamdb_oracle

Oracle Database driver for Erlang
MIT License
106 stars 48 forks source link

cannot compile jamdb_oracle #106

Closed elsbiet closed 2 years ago

elsbiet commented 2 years ago

executing rebar3 compile produces

===> Verifying dependencies... ===> Dep myxql has invalid version ~> 0.4.0 or ~> 0.5.0

what can i do to get around this issue?

thanks for your answer

vstavskyi commented 2 years ago

{:myxql, "~> 0.4.0 or ~> 0.5.0", optional: true} line 96 in ecto_sql/mix.exs

rebar3 app has this error, try mix app instead.

or use local deps of all packages and edit all mix.exs files.

elsbiet commented 2 years ago

thanks