blob: bb991a9d05f2ce8d3751982f01f6ab55fcc412cb [file] [log] [blame]
/'
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
'/
@startuml
<style>
rectangle {
backgroundColor LightBlue
}
legend {
margin 25 0 0 0
}
}
</style>
rectangle parent {
}
rectangle "subproject-a" as subprojectA {
}
rectangle "subproject-b" as subprojectB {
}
rectangle "subproject-c" as subprojectC {
}
rectangle "subproject-c-1" as subprojectC1 {
}
rectangle "subproject-c-2" as subprojectC2 {
}
parent -[#orange]- subprojectA
parent -[#orange]- subprojectB
parent -[#orange]- subprojectC
subprojectC -[#orange]- subprojectC1
subprojectC -[#orange]- subprojectC2
subprojectA <.[#green]right. subprojectB
subprojectB <.[#green]. subprojectC2
'hidden dependencies to change layout
subprojectB -[hidden]right-> subprojectC
legend
{{
!pragma layout smetana
card Relations {
together {
rectangle c
rectangle d
c -[#orange,thickness=1]right- d : parent-child
}
together {
rectangle a
rectangle b
a -[#green,dashed,thickness=1]right-> b : dependency
}
}
}}
end legend
@enduml