blob: 1745af6558e0c948f46525c7ffb443934ae92c02 [file] [log] [blame]
ChrisC025301d2017-01-31 11:40:03 +01001<?xml version="1.0" encoding="UTF-8" ?>
2<!--
3 ============LICENSE_START=======================================================
4 ECOMP MSO
5 ================================================================================
6 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
7 ================================================================================
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
xg353yb6b7bef2017-04-11 13:30:42 +020011
ChrisC025301d2017-01-31 11:40:03 +010012 http://www.apache.org/licenses/LICENSE-2.0
xg353yb6b7bef2017-04-11 13:30:42 +020013
ChrisC025301d2017-01-31 11:40:03 +010014 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 ============LICENSE_END=========================================================
20 -->
21
xg353yb6b7bef2017-04-11 13:30:42 +020022
ChrisC025301d2017-01-31 11:40:03 +010023<process-application
24 xmlns="http://www.camunda.org/schema/1.0/ProcessApplication"
25 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
xg353yb6b7bef2017-04-11 13:30:42 +020026 <process-engine name="common">
ChrisC025301d2017-01-31 11:40:03 +010027 <configuration>org.camunda.bpm.engine.impl.cfg.StandaloneProcessEngineConfiguration</configuration>
28 <datasource>java:jboss/datasources/ProcessEngine</datasource>
29 <properties>
30 <property name="history">full</property>
31 <property name="databaseSchemaUpdate">true</property>
32 <property name="authorizationEnabled">true</property>
33 <property name="jobExecutorDeploymentAware">true</property>
34 <property name="jobExecutorActivate">true</property>
35 </properties>
36 <plugins>
37
38 <!-- plugin enabling Process Application event listener support -->
39 <plugin>
40 <class>org.camunda.bpm.application.impl.event.ProcessApplicationEventListenerPlugin</class>
41 </plugin>
xg353yb6b7bef2017-04-11 13:30:42 +020042
ChrisC025301d2017-01-31 11:40:03 +010043 <!-- plugin enabling integration of camunda Spin -->
44 <plugin>
45 <class>org.camunda.spin.plugin.impl.SpinProcessEnginePlugin</class>
46 </plugin>
47
48 <!-- plugin enabling connect support -->
49 <plugin>
50 <class>org.camunda.connect.plugin.impl.ConnectProcessEnginePlugin</class>
51 </plugin>
xg353yb6b7bef2017-04-11 13:30:42 +020052
ChrisC025301d2017-01-31 11:40:03 +010053 <plugin>
54 <class>org.openecomp.mso.bpmn.core.plugins.LoggingAndURNMappingPlugin</class>
55 </plugin>
xg353yb6b7bef2017-04-11 13:30:42 +020056
ChrisC025301d2017-01-31 11:40:03 +010057 <!-- Needed until all subflows generate MSOWorkflowException events -->
58 <plugin>
59 <class>org.openecomp.mso.bpmn.core.plugins.WorkflowExceptionPlugin</class>
60 </plugin>
xg353yb6b7bef2017-04-11 13:30:42 +020061
ChrisC025301d2017-01-31 11:40:03 +010062 <!-- Optional Plugin for Camunda BPM Workbench -->
63 <!-- <plugin>
64 <class>org.camunda.bpm.debugger.server.EmbeddableDebugWebsocketBootstrap</class>
65 <properties>
66 <property name="httpPort">8088</property>
67 </properties>
xg353yb6b7bef2017-04-11 13:30:42 +020068 </plugin> -->
ChrisC025301d2017-01-31 11:40:03 +010069 </plugins>
70 </process-engine>
xg353yb6b7bef2017-04-11 13:30:42 +020071
72
73 <process-archive name="MSOCommonBPMN">
74 <process-engine>common</process-engine>
75 <properties>
76 <property name="isDeleteUponUndeploy">false</property>
77 <property name="isScanForProcessDefinitions">true</property>
78 </properties>
79 </process-archive>
ChrisC025301d2017-01-31 11:40:03 +010080
81</process-application>