Hi everyone,
I copied all sql files from engine jar to my spring boot application resources and disabled schema-update camunda.bpm.database.schema-update: false
. I use liquibase to run sql scripts.
When I run the service, process engine runs before sql files are executed by liquibase and I get following error:
caused by: org.camunda.bpm.engine.ProcessEngineException: ENGINE-03057 There are no Camunda tables in the database. Hint: Set <property name=“databaseSchemaUpdate” to value=“true”
Is there a way to ensure liquibase scripts run before engine starts?
Thank you