forked from camunda/camunda-bpm-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
21 lines (21 loc) · 706 Bytes
/
plugin.xml
File metadata and controls
21 lines (21 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension point="org.camunda.bpm.modeler.plugin.customtask">
<provider class="org.camunda.bpm.modeler.plugin.customtask.sample.SampleTaskProvider">
</provider>
</extension>
<extension
point="org.eclipse.graphiti.ui.imageProviders">
<!--
kepler+ only support for adding custom images
-->
<imageProvider
class="org.camunda.bpm.modeler.plugin.customtask.sample.Images"
id="org.camunda.bpm.modeler.plugin.customtask.sample.imageProvider">
<diagramTypeProvider
id="org.camunda.bpm.modeler.ui.diagram.Bpmn2DiagramTypeProvider">
</diagramTypeProvider>
</imageProvider>
</extension>
</plugin>