Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

PlantUML Macro
titletest
@startuml
hide footbox

!$COLOR_COMMICM = "#blue"
!$COLOR_API = "#green"
!$COLOR_META = "#red"

!$M0 = "M0\n03/31" $COLOR_META
!$M1 = "M1\n04/15" $COLOR_COMMICM
!$M2 = "M2\n06/07" $COLOR_COMMICM
!$M3 = "M3\n06/21" $COLOR_API
!$M4 = "M4\n06/21" $COLOR_API
!$M5 = "M5\n09/15" $COLOR_META
!$M6 = "M6\n09/30" $COLOR_META

participant $M0
participant $M1
participant $M2
participant $M3
participant $M4
participant $M5
participant $M6

group Commonalities & ICM
$M0 -> $M1: alpha
$M1 -> $M2: release-candidate
end
group API Sub Projects
$M1 -> $M3: alpha
$M3 -> $M4: release candidate
end
group Meta-release
$M4 -> $M5: meta-release
$M5 -> $M6: retrospective
end
@enduml


PlantUML Macro
titletest
@startuml
hide footbox

!$COLOR_COMMICM = "#blue"
!$COLOR_API = "#green"
!$COLOR_META = "#red"

participant "M0\n03/31" $COLOR_COMMICM
participant "M1\n04/15" $COLOR_COMMICM
participant "M2\n06/07" $COLOR_COMMICM
participant "M3\n06/21" $COLOR_API
participant "M4\n08/31" $COLOR_API
participant "M5\n09/15" $COLOR_META
participant "M6\n09/30" $COLOR_META

group Commonalities & ICM
M0 -> M1: alpha
M1 -> M2: release-candidate
end
group API Sub Projects
M1 -> M3: alpha
M3 -> M4: release candidate
end
group Meta-release
M4 -> M5: meta-release
M5 -> M6: retrospective
end
@enduml

...