is there a way to achieve this?
@startuml
title Components - Component Diagram
component "parent 1" as parent1 {
component "a" as a {
}
component "b (common)" as b {
}
}
component "parent 2" as parent2 {
component "b (common)" as b {
}
component "c" as c {
}
}
@enduml
Current result looks wrong anyway:
1. component c is not under parent 2
2. parent 2 should be outlined the way it includes component b, while parent 1 should be outlined to include component b too.
UPD: 17.07.17: Here is what I expect (general idea, representation may vary):
Also, I still want to address it as b, not b2