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?
Use checkouts dependencies. If you add your application in the
_checkouts
folder it will do the following.In the past there was an issue where the directory in
_checkouts
was used for the artifacts too, if I read the last release notes correctly, this was corrected already.