hibernateable_pipeline_item.dot 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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 -> Fork
  16. Fork -> Consume
  17. Consume -> Merge
  18. Merge -> Consume
  19. Merge -> "<disposal>"
  20. Merge -> Finalize
  21. Consume -> Hibernate
  22. Hibernate -> Boot
  23. Boot -> Consume
  24. Consume -> Finalize
  25. Finalize -> Result
  26. Result -> Serialize
  27. Serialize -> YAML
  28. Serialize -> "Protocol Buffers"
  29. Registration [style=filled, fillcolor=dimgray, fontcolor=white]
  30. Resolution [style=filled, fillcolor=dimgray, fontcolor=white]
  31. "Command Line" [style=filled, fillcolor=dimgray, fontcolor=white]
  32. Repository [style=filled, fillcolor=gray]
  33. Commits [style=filled, fillcolor=gray]
  34. Result [style=filled, fillcolor=gray]
  35. YAML [style=filled, fillcolor=gray]
  36. "Protocol Buffers" [style=filled, fillcolor=gray]
  37. }