Skip to content

Instantly share code, notes, and snippets.

@cachenbach
Created April 28, 2019 11:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cachenbach/84f75a575882eddeea2f203ea0def6e0 to your computer and use it in GitHub Desktop.
Save cachenbach/84f75a575882eddeea2f203ea0def6e0 to your computer and use it in GitHub Desktop.
Extrem simple workflow
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:zeebe="http://camunda.org/schema/zeebe/1.0" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_11jisqm" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Zeebe Modeler" exporterVersion="0.6.2">
<bpmn:process id="Process_1rqmvpl" isExecutable="true">
<bpmn:startEvent id="StartEvent_1">
<bpmn:outgoing>SequenceFlow_0qdrx47</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:endEvent id="EndEvent_0l6mow5">
<bpmn:incoming>SequenceFlow_0vs826q</bpmn:incoming>
</bpmn:endEvent>
<bpmn:serviceTask id="ServiceTask_0q8pbnj" name="NoOpTask">
<bpmn:extensionElements>
<zeebe:taskDefinition type="noop" retries="0" />
</bpmn:extensionElements>
<bpmn:incoming>SequenceFlow_0qdrx47</bpmn:incoming>
<bpmn:outgoing>SequenceFlow_0vs826q</bpmn:outgoing>
</bpmn:serviceTask>
<bpmn:sequenceFlow id="SequenceFlow_0qdrx47" sourceRef="StartEvent_1" targetRef="ServiceTask_0q8pbnj" />
<bpmn:sequenceFlow id="SequenceFlow_0vs826q" sourceRef="ServiceTask_0q8pbnj" targetRef="EndEvent_0l6mow5" />
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Process_1rqmvpl">
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="179" y="103" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="EndEvent_0l6mow5_di" bpmnElement="EndEvent_0l6mow5">
<dc:Bounds x="451" y="103" width="36" height="36" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="ServiceTask_0q8pbnj_di" bpmnElement="ServiceTask_0q8pbnj">
<dc:Bounds x="289" y="81" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="SequenceFlow_0qdrx47_di" bpmnElement="SequenceFlow_0qdrx47">
<di:waypoint x="215" y="121" />
<di:waypoint x="289" y="121" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge id="SequenceFlow_0vs826q_di" bpmnElement="SequenceFlow_0vs826q">
<di:waypoint x="389" y="121" />
<di:waypoint x="451" y="121" />
</bpmndi:BPMNEdge>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn:definitions>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment