xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 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.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 | |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 22 | <!--<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" /> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 31 | </list> |
| 32 | </property> |
| 33 | </bean> |
| 34 | |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 35 | <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 | |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 40 | <!--<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> |