related to https://forum.plantuml.net/15674/layout-components-diagram-broken-adding-inner-components
If the elk layout is activated it fails with a NullPointerException, without elk it works.
BR Helmut
@startuml
!pragma layout elk
component "My system without details" {
component Client{
}
component Server {
}
Client -r- Server
}
component "My system with details" {
component Detailed_Client {
[Application]
}
component Detailed_Server {
[Service]
}
Detailed_Client -r- Detailed_Server
}
@enduml