Hello everyone, I have a question regarding nested apps in an umbrella. I have a set of growing libs and would like put these libs into its own folder.
Current project structure looks something like this:
```
\umbrella
mix.exs
\core
mix.exs
\lib_analytics
mix.exs
...
\lib_utilities
mix.exs
```
`core` depends on `lib_analytics` and `lib_utilities`. In `core` dependency list, I have `{:lib_analytics, in_umbrella: true}` and `{:lib_utilities, in_umbrella: true}`.
What I would like to do:
```
\umbrella
mix.exs
\core
mix.exs
\libraries
\analytics
mix.exs
\utilities
mix.exs
```
What I have tried:
1. using `apps_path: "apps/{core,libraries/*}"` as suggested
here. But it didn't work.
2. using umbrella within umbrella. I kept getting `dependencies have diverged` errors.
Any pointers would be greatly appreciated! Thanks!