I have 5 projects in my workspace, 2 of them are core projects and 3 are implementing these core projects.
Core Projects:
- OnlineToolCore
- OnlineToolCoreImpl
Implementing Tool Projects:
- ToolAImpl
- ToolBImpl
- ToolCImpl
I want the possibility that if I build ToolAImpl, that OnlineToolCore and OnlineToolCoreImpl are also builded before without building ToolBImpl and ToolCImpl.
The same for ToolB: Core but not ToolA and ToolC. And for ToolC: Core but not ToolA and ToolB
How can I achieve this?