Form elements library

yes, you can implement automated deployment with Java API(DeploymentBuilder (Camunda Platform Javadocs 7.16.0-ee)) or REST API(Deployment | docs.camunda.org)

in Deployment deployment = repositoryService
.createDeployment()
.name(DEPLOYMENT_NAME)
.addModelInstance(RESOURCE_NAME, createProcessWithServiceTask(PROCESS_KEY))
.deploy(); where can i specify the formname ??

I would suggest you create a separate topic for this question. It’s better to keep topics dedicated to one question.
Here we already mix Modeler version, deployment from Modeler adding and accessing REST API capabilities, and now automated deployment… :slight_smile:
I guess this topic should be marked as solved since we were able to upgrade Modeler and deploy the process.

thanks mark as solve