You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
594 B
Plaintext
23 lines
594 B
Plaintext
@startuml
|
|
' convert it with additional command line argument -DRELATIVE_INCLUDE="." to use locally
|
|
!if %variable_exists("RELATIVE_INCLUDE")
|
|
!include ./../C4_Container.puml
|
|
!else
|
|
!include https://raw.githubusercontent.com/plantuml-stdlib/C4-PlantUML/master/C4_Container.puml
|
|
!endif
|
|
|
|
Person(a, "Person A")
|
|
Container(b, "Container B", "techn")
|
|
System(c, "System C")
|
|
Container(d, "Container D", "techn")
|
|
Container_Ext(e, "Ext. Container E", "techn")
|
|
|
|
Rel_R(a, b, "calls")
|
|
Rel_D(b, c, "uses")
|
|
Rel_D(c, d, "uses")
|
|
Rel_R(d, e, "updates")
|
|
|
|
SHOW_FLOATING_LEGEND()
|
|
Lay_Distance(legend, e, 1)
|
|
@enduml
|