blob: e4e8ae5176a8a06e6895855a868b70d7386d358c [file] [log] [blame]
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -07001<?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.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="true" />
19
20 <property name="history" value="full" />
21
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070022 <!--<property name="idGenerator" ref="uuidGenerator" />-->
23
24 <!-- engine plugins -->
25 <property name="processEnginePlugins">
26 <list>
27 <ref bean="connectProcessEnginePlugin" />
28 <ref bean="spinProcessEnginePlugin" />
29 <ref bean="loggingPlugin" />
30 <ref bean="workflowExceptionPlugin" />
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070031 </list>
32 </property>
33 </bean>
34
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070035 <bean id="loggingPlugin" class="org.openecomp.mso.bpmn.core.plugins.LoggingAndURNMappingPlugin" />
36
37 <!-- Needed until all subflows generate MSOWorkflowException events -->
38 <bean id="workflowExceptionPlugin" class="org.openecomp.mso.bpmn.core.plugins.WorkflowExceptionPlugin" />
39
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070040 <!--<bean id="uuidGenerator" class="org.camunda.bpm.engine.impl.persistence.StrongUuidGenerator" />-->
41
42 <!-- engine plugin beans -->
43 <bean id="connectProcessEnginePlugin" class="org.camunda.connect.plugin.impl.ConnectProcessEnginePlugin" />
44 <bean id="spinProcessEnginePlugin" class="org.camunda.spin.plugin.impl.SpinProcessEnginePlugin" />
45
46</beans>