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 
<https://groups.google.com/d/msg/elixir-lang-core/Cl9lkx0d6Bk/bTYohWPbCgAJ>. 
But it didn't work.
2. using umbrella within umbrella. I kept getting `dependencies have 
diverged` errors.

Any pointers would be greatly appreciated! Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"elixir-lang-core" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elixir-lang-core/c10eb53d-6329-4838-9b1a-9530fbe47d1e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to