leaf_pipeline_item.dot 905 B

12345678910111213141516171819202122232425262728
  1. digraph PipelineItem {
  2. Name -> Registration
  3. Provides -> Registration
  4. Registration -> Resolution
  5. Requires -> Resolution
  6. Resolution -> Configure
  7. Flag -> "Command Line"
  8. ListConfigurationOptions -> "Command Line"
  9. "Command Line" -> Configure
  10. Configure -> Initialize
  11. Repository -> Initialize
  12. Initialize -> Consume
  13. Commits -> Consume
  14. Consume -> Consume
  15. Consume -> Finalize
  16. Finalize -> Result
  17. Result -> Serialize
  18. Serialize -> YAML
  19. Serialize -> "Protocol Buffers"
  20. Registration [style=filled, fillcolor=dimgray, fontcolor=white]
  21. Resolution [style=filled, fillcolor=dimgray, fontcolor=white]
  22. "Command Line" [style=filled, fillcolor=dimgray, fontcolor=white]
  23. Repository [style=filled, fillcolor=gray]
  24. Commits [style=filled, fillcolor=gray]
  25. Result [style=filled, fillcolor=gray]
  26. YAML [style=filled, fillcolor=gray]
  27. "Protocol Buffers" [style=filled, fillcolor=gray]
  28. }