Skip to content

Commit

Permalink
Update to version 3.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasmartin committed Jan 20, 2019
1 parent 3f162dc commit 4296e97
Show file tree
Hide file tree
Showing 8 changed files with 58 additions and 55 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>ch.fhnw.digibp</groupId>
<artifactId>digibp-camunda-template</artifactId>
<version>3.2.1</version>
<version>3.2.2</version>
<packaging>${packaging.type}</packaging>

<properties>
Expand Down
9 changes: 9 additions & 0 deletions src/main/resources/META-INF/processes.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<process-application xmlns="http://www.camunda.org/schema/1.0/ProcessApplication">

<process-archive>
<properties>
<property name="additionalResourceSuffixes">html,js</property>
</properties>
</process-archive>

</process-application>
8 changes: 4 additions & 4 deletions src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ camunda:
spring:
profiles:
active: local
datasource:
url: jdbc:h2:file:./data/camunda
username: sa
password: sa
# datasource:
# url: jdbc:h2:file:./data/camunda
# username: sa
# password: sa
## Uncomment the following lines to enable the h2 DB console:
# h2:
# console:
Expand Down
44 changes: 44 additions & 0 deletions src/main/resources/digibp-template.bpmn
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?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:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" id="Definitions_0dpg51j" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="2.2.4">
<bpmn:process id="digibp-template" isExecutable="true">
<bpmn:startEvent id="StartEvent_1" name="Start Event">
<bpmn:outgoing>SequenceFlow_13q687d</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:sequenceFlow id="SequenceFlow_13q687d" sourceRef="StartEvent_1" targetRef="Task_0e9oyde" />
<bpmn:endEvent id="EndEvent_0g4qkhm" name="End Event">
<bpmn:incoming>SequenceFlow_051aerh</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="SequenceFlow_051aerh" sourceRef="Task_0e9oyde" targetRef="EndEvent_0g4qkhm" />
<bpmn:userTask id="Task_0e9oyde" name="User Task" camunda:assignee="demo">
<bpmn:incoming>SequenceFlow_13q687d</bpmn:incoming>
<bpmn:outgoing>SequenceFlow_051aerh</bpmn:outgoing>
</bpmn:userTask>
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="digibp-template">
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="173" y="102" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="163" y="145" width="56" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="SequenceFlow_13q687d_di" bpmnElement="SequenceFlow_13q687d">
<di:waypoint x="209" y="120" />
<di:waypoint x="280" y="120" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="EndEvent_0g4qkhm_di" bpmnElement="EndEvent_0g4qkhm">
<dc:Bounds x="448" y="102" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="440" y="145" width="52" height="14" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="SequenceFlow_051aerh_di" bpmnElement="SequenceFlow_051aerh">
<di:waypoint x="380" y="120" />
<di:waypoint x="448" y="120" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="UserTask_1726nwk_di" bpmnElement="Task_0e9oyde">
<dc:Bounds x="280" y="80" width="100" height="80" />
</bpmndi:BPMNShape>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn:definitions>
Empty file.
50 changes: 0 additions & 50 deletions src/main/resources/modelling/Microflow.bpmn

This file was deleted.

Empty file removed src/main/resources/public/.gitkeep
Empty file.
Empty file.

0 comments on commit 4296e97

Please sign in to comment.