(Auto)Deployment of Camunda Forms?

For deploying camunda forms on Spring Boot app startup I had to update provided processes.xml: e.g.

<process-application
        xmlns="http://www.camunda.org/schema/1.0/ProcessApplication"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

    <process-archive>
        <properties>
            <property name="additionalResourceSuffixes">.form</property>
        </properties>
    </process-archive>

</process-application>

Is this a recommended approach?

4 Likes

Hi @Vojimir_Golem

It it for now, but we’ll be adding that setting by default in a future release.