Hello,
How do I specify a tenantID for processEngineConfiguration.deploymentResources bean property in xml configuration (deploying using spring config xml) ?
Below is a snippet of my config xml:
<bean id="processEngineConfiguration" class="org.activiti.spring.SpringProcessEngineConfiguration">
<property name="dataSource" ref="dataSource" />
<property name="transactionManager" ref="transactionManager" />
<property name="databaseSchemaUpdate" value="true" />
<property name="deploymentName" value="BGDeployment" />
<property name="deploymentMode" value="single-resource" />
<property name="deploymentResources">
<list>
<value>classpath*:/bpmn/workcode/WorkCodeAckCancel_SubProc.bpmn</value>
</list>
</property>
</bean>