[MSO-8] Update the maven dependency
[so.git] / bpmn / MSOCoreBPMN / src / test / resources / camunda.cfg.xml
1 <?xml version="1.0" encoding="UTF-8" ?>
2
3 <beans xmlns="http://www.springframework.org/schema/beans"
4        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5        xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
6
7   <bean id="processEngineConfiguration" class="org.camunda.bpm.engine.impl.cfg.StandaloneInMemProcessEngineConfiguration">
8
9     <property name="jdbcUrl" value="jdbc:h2:mem:camunda;DB_CLOSE_DELAY=1000" />
10     <property name="jdbcDriver" value="org.h2.Driver" />
11     <property name="jdbcUsername" value="sa" />
12     <property name="jdbcPassword" value="" />
13
14     <!-- Database configurations -->
15     <property name="databaseSchemaUpdate" value="true" />
16
17     <!-- job executor configurations -->
18     <property name="jobExecutorActivate" value="false" />
19
20     <property name="history" value="full" />
21
22     <property name="customPostBPMNParseListeners">
23       <list>
24         <bean class="org.camunda.bpm.engine.impl.bpmn.parser.FoxFailedJobParseListener" />
25       </list>
26     </property>
27
28     <property name="failedJobCommandFactory" ref="foxFailedJobCommandFactory" />
29
30     <!--<property name="idGenerator" ref="uuidGenerator" />-->
31
32     <!-- engine plugins -->
33     <property name="processEnginePlugins">
34       <list>
35         <ref bean="connectProcessEnginePlugin" />
36         <ref bean="spinProcessEnginePlugin" />
37         <ref bean="loggingPlugin" />
38         <ref bean="workflowExceptionPlugin" />
39       </list>
40     </property>
41
42   </bean>
43
44   <bean id="loggingPlugin" class="org.openecomp.mso.bpmn.core.plugins.LoggingAndURNMappingPlugin" />
45
46   <!-- Needed until all subflows generate MSOWorkflowException events -->
47   <bean id="workflowExceptionPlugin" class="org.openecomp.mso.bpmn.core.plugins.WorkflowExceptionPlugin" />
48   
49   <bean id="foxFailedJobCommandFactory" class="org.camunda.bpm.engine.impl.jobexecutor.FoxFailedJobCommandFactory" />
50
51   <!--<bean id="uuidGenerator" class="org.camunda.bpm.engine.impl.persistence.StrongUuidGenerator" />-->
52
53   <!-- engine plugin beans -->
54   <bean id="connectProcessEnginePlugin" class="org.camunda.connect.plugin.impl.ConnectProcessEnginePlugin" />
55   <bean id="spinProcessEnginePlugin" class="org.camunda.spin.plugin.impl.SpinProcessEnginePlugin" />
56
57 </beans>