Hi, how can I rename the deployment name for a Camunda Spring Boot Process Application?
I’m able to deploy it but is named “SpringAutoDeployment” in cockpit
Using @EnableProcessApplication(“appName”) annotation combining to processes.xml under META-INF folder will deploy doesn’t work anymore
Thanks in advance, best regards
Yana
2
Hi Antonio,
Which example do you follow?
And what does it mean:
Was it working before?
Best regards,
Yana
Hi @yana.vasileva, solved using resource tag within processes.xml because my bpmn files are contained in differents jar.
<process-archive name="process-name">
<process-engine>default</process-engine>
<resource>bpmn/process-definition-name.bpmn</resource>
<properties>
<property name="isScanForProcessDefinitions">true</property>
<property name="isDeleteUponUndeploy">false</property>
</properties>
</process-archive>
Hi @yana.vasileva is there a way to set bpmn folder as global resource path for all bpmn files instead of add xml entries?
For example:
bpmn/process-definition-name.bpmn