I have two Erlang applications: single app mylogger
and umbrella app myapp
.
I want to include a current version of mylogger
as a dependency to myapp
.
Rebar3 only suggests to add deps from git like
{mylogger, {git, "https://github.com/someuser/mylogger", {branch, "master"}}}
or from hex.pm.
How to add my custom app from the file system with rebar3 structure?