pipeline_item.dot 631 B

12345678910111213141516171819
  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. Registration [style=filled, fillcolor=dimgray, fontcolor=white]
  15. Resolution [style=filled, fillcolor=dimgray, fontcolor=white]
  16. "Command Line" [style=filled, fillcolor=dimgray, fontcolor=white]
  17. Repository [style=filled, fillcolor=gray]
  18. Commits [style=filled, fillcolor=gray]
  19. }