pipeline_item.dot 729 B

123456789101112131415161718192021222324
  1. digraph PipelineItem {
  2. Name -> Registration
  3. Provides -> Registration
  4. Registration -> Resolution
  5. Requires -> Resolution
  6. Resolution -> Configure
  7. ListConfigurationOptions -> "Command Line"
  8. "Command Line" -> Configure
  9. Configure -> Initialize
  10. Repository -> Initialize
  11. Initialize -> Consume
  12. Commits -> Consume
  13. Consume -> Consume
  14. Consume -> Fork
  15. Fork -> Consume
  16. Consume -> Merge
  17. Merge -> Consume
  18. Merge -> "<disposal>"
  19. Registration [style=filled, fillcolor=dimgray, fontcolor=white]
  20. Resolution [style=filled, fillcolor=dimgray, fontcolor=white]
  21. "Command Line" [style=filled, fillcolor=dimgray, fontcolor=white]
  22. Repository [style=filled, fillcolor=gray]
  23. Commits [style=filled, fillcolor=gray]
  24. }