Skip to content
This repository was archived by the owner on Nov 9, 2022. It is now read-only.

Commit f45a2fe

Browse files
committed
fix for packageName error message
1 parent c46dcbd commit f45a2fe

File tree

9 files changed

+67
-1
lines changed

9 files changed

+67
-1
lines changed

data/examples/bpmn2/np1.bpmn2

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<bpmn2:definitions
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL"
5+
xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI"
6+
xmlns:dc="http://www.omg.org/spec/DD/20100524/DC"
7+
xmlns:di="http://www.omg.org/spec/DD/20100524/DI"
8+
xmlns:tns="http://marklogic.com/workflow"
9+
xmlns:ext="http://org.eclipse.bpmn2/ext"
10+
xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd "
11+
id="Definition"
12+
targetNamespace="http://marklogic.com/workflow">
13+
14+
<bpmn2:itemDefinition id="ItemDefinition_1" isCollection="false" structureRef="xs:string"/>
15+
<bpmn2:message id="Message_1" itemRef="ItemDefinition_1" name="BlankMessage">
16+
<bpmn2:extensionElements>
17+
<ext:style/>
18+
</bpmn2:extensionElements>
19+
</bpmn2:message>
20+
<bpmn2:message id="Message_2" itemRef="ItemDefinition_1" name="TestEmail">
21+
<bpmn2:extensionElements>
22+
<ext:style/>
23+
</bpmn2:extensionElements>
24+
</bpmn2:message>
25+
<bpmn2:interface id="Interface_1" implementationRef="MarkLogicEmailInterface" name="EmailInterface">
26+
<bpmn2:operation id="_Operation_4" name="SendTestEmail">
27+
<bpmn2:inMessageRef>Message_1</bpmn2:inMessageRef>
28+
<bpmn2:outMessageRef>Message_2</bpmn2:outMessageRef>
29+
</bpmn2:operation>
30+
</bpmn2:interface>
31+
<bpmn2:process processType="Public" isExecutable="true" id="np1" name="np1" >
32+
<bpmn2:startEvent id="StartEvent_1" name="StartEvent_1">
33+
<bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing>
34+
</bpmn2:startEvent>
35+
<bpmn2:endEvent id="EndEvent_1" name="End Event 1">
36+
<bpmn2:incoming>SequenceFlow_1</bpmn2:incoming>
37+
</bpmn2:endEvent>
38+
<bpmn2:sequenceFlow id="SequenceFlow_1" sourceRef="StartEvent_1" targetRef="EndEvent_1"/>
39+
</bpmn2:process>
40+
41+
<bpmndi:BPMNDiagram>
42+
<bpmndi:BPMNPlane id="BPMNPlane_Process_1" bpmnElement="np1">
43+
<bpmndi:BPMNShape id="BPMNShape_StartEvent_1" bpmnElement="StartEvent_1">
44+
<dc:Bounds height="0.0" width="0.0" x="45.0" y="45.0"/>
45+
<bpmndi:BPMNLabel id="BPMNLabel_1">
46+
<dc:Bounds height="10.0" width="54.0" x="36.0" y="81.0"/>
47+
</bpmndi:BPMNLabel>
48+
</bpmndi:BPMNShape>
49+
<bpmndi:BPMNShape id="BPMNShape_EndEvent_1" bpmnElement="EndEvent_1">
50+
<dc:Bounds height="36.0" width="36.0" x="370.0" y="45.0"/>
51+
<bpmndi:BPMNLabel id="BPMNLabel_2">
52+
<dc:Bounds height="10.0" width="51.0" x="363.0" y="81.0"/>
53+
</bpmndi:BPMNLabel>
54+
</bpmndi:BPMNShape>
55+
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="BPMNShape_StartEvent_1" targetElement="BPMNShape_EndEvent_1">
56+
<di:waypoint xsi:type="dc:Point" x="81.0" y="63.0"/>
57+
<di:waypoint xsi:type="dc:Point" x="225.0" y="63.0"/>
58+
<di:waypoint xsi:type="dc:Point" x="370.0" y="63.0"/>
59+
<bpmndi:BPMNLabel id="BPMNLabel_3"/>
60+
</bpmndi:BPMNEdge>
61+
</bpmndi:BPMNPlane>
62+
</bpmndi:BPMNDiagram>
63+
64+
</bpmn2:definitions>
23 Bytes
Binary file not shown.
45.4 KB
Binary file not shown.
Binary file not shown.

eclipse/MarkLogicWorkflowUpdateSite/site.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<description name="MarkLogic Workflow GitHub Eclipse Update Site" url="https://github.com/adamfowleruk/marklogicworkflow/raw/master/eclipse/MarkLogicWorkflowUpdateSite">
44
MarkLogic Workflow Eclipse BPMN2 Modeler extension plug in. See http://github.com/adamfowleruk/marklogicworkflow for details.
55
</description>
6-
<feature url="features/MarkLogicWorkflow_1.0.0.201504170009.jar" id="MarkLogicWorkflow" version="1.0.0.201504170009">
6+
<feature url="features/MarkLogicWorkflow_1.0.0.201504170037.jar" id="MarkLogicWorkflow" version="1.0.0.201504170037">
77
<category name="EclipseBPMN2Modeler"/>
88
</feature>
99
<category-def name="EclipseBPMN2Modeler" label="Eclipse BPMN2 Modeler"/>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/org/

eclipse/org.eclipse.bpmn2.modeler.runtime.marklogic/src/org/eclipse/bpmn2/modeler/runtime/marklogic/workflow/wizards/NewWorkflowProcessWizard.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,7 @@ private InputStream openContentStream() {
228228
" <bpmn2:process processType=\"Public\" isExecutable=\"true\""+ //$NON-NLS-1$
229229
" id=\""+processName+"\""+ //$NON-NLS-1$ //$NON-NLS-2$
230230
" name=\""+processName+"\""+ //$NON-NLS-1$ //$NON-NLS-2$
231+
" packageName=\"MarkLogicWorkflow\""+ //$NON-NLS-1$ //$NON-NLS-2$
231232
" >\n"+ //$NON-NLS-1$
232233

233234

0 commit comments

Comments
 (0)