HI Camunda Team,
I am using 8.2 for now and we were using @Deployment for deploying the BPMNs and it only deployed when there was any change in bpmn…Now we have a requirement to deploy manually so we starte using zeebeClient.newDeployResourceCommand()
.addResourceFromClasspath(bpmn.getFilename())
.send()
.join();
But now what is happening is even if there is no change in bpmn, it deploys a new version…this is causing issue in prod…any fix for this?