1234567891011121314151617181920212223242526272829303132333435363738 |
- digraph PipelineItem {
- Name -> Registration
- Provides -> Registration
- Registration -> Resolution
- Requires -> Resolution
- Resolution -> Configure
- Flag -> "Command Line"
- ListConfigurationOptions -> "Command Line"
- "Command Line" -> Configure
- Configure -> Initialize
- Repository -> Initialize
- Initialize -> Consume
- Commits -> Consume
- Consume -> Consume
- Consume -> Fork
- Fork -> Consume
- Consume -> Merge
- Merge -> Consume
- Merge -> "<disposal>"
- Merge -> Finalize
- Consume -> Hibernate
- Hibernate -> Boot
- Boot -> Consume
- Consume -> Finalize
- Finalize -> Result
- Result -> Serialize
- Serialize -> YAML
- Serialize -> "Protocol Buffers"
- Registration [style=filled, fillcolor=dimgray, fontcolor=white]
- Resolution [style=filled, fillcolor=dimgray, fontcolor=white]
- "Command Line" [style=filled, fillcolor=dimgray, fontcolor=white]
- Repository [style=filled, fillcolor=gray]
- Commits [style=filled, fillcolor=gray]
- Result [style=filled, fillcolor=gray]
- YAML [style=filled, fillcolor=gray]
- "Protocol Buffers" [style=filled, fillcolor=gray]
- }
|